diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-11-30 22:44:04 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2022-12-09 15:40:04 +0900 |
commit | b749bc05d0c54ced973628372f43085a9719aa2e (patch) | |
tree | b7a283bbce1cc46ed0a2fdb8ad206b03db5a9840 /lib/rdoc/rd | |
parent | fa64889abbad727d31bb927604d87679825dcd37 (diff) |
[ruby/rdoc] Use Tempfile
https://github.com/ruby/rdoc/commit/0b9dde5ab4
Diffstat (limited to 'lib/rdoc/rd')
-rw-r--r-- | lib/rdoc/rd/block_parser.rb | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/rdoc/rd/block_parser.rb b/lib/rdoc/rd/block_parser.rb index 6f70622c0b..1241f81762 100644 --- a/lib/rdoc/rd/block_parser.rb +++ b/lib/rdoc/rd/block_parser.rb @@ -127,19 +127,15 @@ def next_token # :nodoc: # non-RD part begin when /^=begin\s+(\w+)/ part = $1 -=begin # not imported to RDoc if @in_part # if in non-RD part @part_content.push(line) else @in_part = part if @tree.filter[part] # if filter exists # p "BEGIN_PART: #{@in_part}" # DEBUG end -=end - @in_part = part # non-RD part end - when /^=end(?:$|[\s\0\C-d\C-z])/ + when /^=end/ if @in_part # if in non-RD part -=begin # not imported to RDoc # p "END_PART: #{@in_part}" # DEBUG # make Part-in object part = RDoc::RD::Part.new(@part_content.join(""), @tree, "r") @@ -158,14 +154,11 @@ def next_token # :nodoc: end @in_part = nil return [:SUBTREE, subtree] -=end end else -=begin # not imported to RDoc if @in_part # if in non-RD part @part_content.push(line) end -=end end end |