From: nisikimi Date: Mon, 18 Aug 2003 01:47:58 +0000 (+0000) Subject: one line /* */ type handling changed X-Git-Tag: XML-base~96 X-Git-Url: http://git.chise.org/gitweb/?p=m17n%2Fm17n-docs.git;a=commitdiff_plain;h=3d3d7bb7f3976172462be1fbeb1dbcfa93dfb844 one line /* */ type handling changed --- diff --git a/utils/usr_filter.rb b/utils/usr_filter.rb index c776220..2bb63b0 100755 --- a/utils/usr_filter.rb +++ b/utils/usr_filter.rb @@ -33,16 +33,22 @@ while gets commentblock(buf) buf = [] - when /\/\*\s.*\*\// # /* comment */ type comment + when /^\/\*\s.*\*\// # /* comment */ type comment if doxy == 1 buf.push($_.gsub!(/\*\//, " ").gsub!(/\/\*/, "//")) # should be included only in the example code + end + + when /\/\*\s.*\*\// # code + /* comment */ type comment + if doxy == 1 + buf.push($_.gsub!(/\*\//, " ").gsub!(/\/\*/, "//")) # should be included in the example code else - if doxy == 0 + if doxy == 0 commentblock(buf) buf = [] print $_.gsub!(/\/\*\s.*\*\//," ") # should be omiited in code end end + when /\/\*{2,3}ja.*\*\// #japanese one liner when /\/\*\*en.*\*\// #one liner when /\/\*\*\*en.*\*\// #one liner