diff options
author | Yusuke Endoh <[email protected]> | 2019-08-19 09:45:41 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2019-08-19 10:07:05 +0900 |
commit | bc1e2271af54087cb3b9e4a0cdceeead56ee3a1a (patch) | |
tree | a6e8dfa3dfa583d0dee5ffa5df1edfa679285ee6 /lib/rdoc/markup | |
parent | 4c13368972366507b741be60602f314b85861f52 (diff) |
lib/rdoc/markup/parser.rb: remove a unused variable initialization
Diffstat (limited to 'lib/rdoc/markup')
-rw-r--r-- | lib/rdoc/markup/parser.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/rdoc/markup/parser.rb b/lib/rdoc/markup/parser.rb index 600eb841ac..1b54a519d1 100644 --- a/lib/rdoc/markup/parser.rb +++ b/lib/rdoc/markup/parser.rb @@ -423,7 +423,6 @@ class RDoc::Markup::Parser end def scan(re) - prev_pos = @s.pos ret = @s.scan(re) @column += ret.length if ret ret |