From dafff6db598ed2acd12996c925cf2cfd57d86f7d Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 11 Mar 2006 08:27:43 +0000 Subject: [PATCH] * lib/rdoc/ri/ri_formatter.rb (RI::TextFormatter::wrap): removed space before argument parenthesis. [ruby-talk:183630] * ruby.1: a clarification patch from David Lutterkort . [ruby-core:7508] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ lib/rdoc/ri/ri_formatter.rb | 2 +- ruby.1 | 5 +++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index bc69cd37358117..05284a9da9b714 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Sat Mar 11 14:24:06 2006 Yukihiro Matsumoto + + * lib/rdoc/ri/ri_formatter.rb (RI::TextFormatter::wrap): removed + space before argument parenthesis. [ruby-talk:183630] + + * ruby.1: a clarification patch from David Lutterkort + . [ruby-core:7508] + Sat Mar 4 15:26:40 2006 Tanaka Akira * gc.c (id2ref): fix symbol test. diff --git a/lib/rdoc/ri/ri_formatter.rb b/lib/rdoc/ri/ri_formatter.rb index cf016d7d792a15..745ae292ee56aa 100644 --- a/lib/rdoc/ri/ri_formatter.rb +++ b/lib/rdoc/ri/ri_formatter.rb @@ -43,7 +43,7 @@ def wrap(txt, prefix=@indent, linelen=@width) end end res << work if work.length.nonzero? - puts (prefix + res.join("\n" + next_prefix)) + puts(prefix + res.join("\n" + next_prefix)) end ###################################################################### diff --git a/ruby.1 b/ruby.1 index 5587a6d9a6b505..f240f2f22bfbfa 100644 --- a/ruby.1 +++ b/ruby.1 @@ -309,9 +309,10 @@ this switch, unless you are going to debug the Ruby interpreter. .Sh ENVIRONMENT .Bl -tag -width "RUBYLIB_PREFIX" -compact .It Ev RUBYLIB -A colon-separated list of directories that are appended to Ruby's +A colon-separated list of directories that are added to Ruby's library load path -.Pf ( Li "$:" ) . +.Pf ( Li "$:" ) . Directories from this environment variable are searched +before the standard load path is searched. .Pp e.g.: .Dl RUBYLIB="$HOME/lib/ruby:$HOME/lib/rubyext"