diff options
| author | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-24 01:39:45 +0000 |
|---|---|---|
| committer | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-24 01:39:45 +0000 |
| commit | 307a0438359491b494251a5601148e1c0b6d532f (patch) | |
| tree | b3b4f0aaafedfb770337f0bb79fc123fc1cb5233 /lib | |
| parent | 73fca1e1868fd8e7b3874cf644d88a8d1134eb04 (diff) | |
| download | ruby-307a0438359491b494251a5601148e1c0b6d532f.tar.gz ruby-307a0438359491b494251a5601148e1c0b6d532f.tar.xz ruby-307a0438359491b494251a5601148e1c0b6d532f.zip | |
Fix bug where consecutive headings were merged
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6210 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/rdoc/markup/simple_markup.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rdoc/markup/simple_markup.rb b/lib/rdoc/markup/simple_markup.rb index 18971e23e..21064cb00 100644 --- a/lib/rdoc/markup/simple_markup.rb +++ b/lib/rdoc/markup/simple_markup.rb @@ -453,7 +453,7 @@ module SM #:nodoc: else wantedType = line.type end - wantedLevel = line.level + wantedLevel = line.type == Line::HEADING ? line.param : line.level end end |
