summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-25 17:20:05 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-25 17:20:05 +0000
commit274ebddacbd9694e9d062e3e2a06bcec17ceb4b4 (patch)
treeec451376d654277f1e707052cbf6340542651daa /tool
parent1363dcd03b3c9d963f5170e0ee7b6d11534abf14 (diff)
downloadruby-274ebddacbd9694e9d062e3e2a06bcec17ceb4b4.tar.gz
ruby-274ebddacbd9694e9d062e3e2a06bcec17ceb4b4.tar.xz
ruby-274ebddacbd9694e9d062e3e2a06bcec17ceb4b4.zip
* configure.in ($MANTYPE): followed ruby.1, which had moved.
* instruby.rb (:man): ditto. * mdoc2man.rb: fixed for the case Xr with 2 arguments. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/mdoc2man.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/mdoc2man.rb b/tool/mdoc2man.rb
index 910b2e574..0922474b4 100755
--- a/tool/mdoc2man.rb
+++ b/tool/mdoc2man.rb
@@ -190,7 +190,7 @@ class Mdoc2Man
next
when 'Xr'
retval << '\\fB' << words.shift <<
- '\\fP(' << words.shift << ')' << words.shift
+ '\\fP(' << words.shift << ')' << (words.shift||'')
break
when 'Rs'
@refauthors = []