mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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 <dlutter at redhat.com>. [ruby-core:7508] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f47eaab4f5
commit
dafff6db59
3 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
Sat Mar 11 14:24:06 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* 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
|
||||||
|
<dlutter at redhat.com>. [ruby-core:7508]
|
||||||
|
|
||||||
Sat Mar 4 15:26:40 2006 Tanaka Akira <akr@m17n.org>
|
Sat Mar 4 15:26:40 2006 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
* gc.c (id2ref): fix symbol test.
|
* gc.c (id2ref): fix symbol test.
|
||||||
|
|
|
@ -43,7 +43,7 @@ module RI
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
res << work if work.length.nonzero?
|
res << work if work.length.nonzero?
|
||||||
puts (prefix + res.join("\n" + next_prefix))
|
puts(prefix + res.join("\n" + next_prefix))
|
||||||
end
|
end
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
5
ruby.1
5
ruby.1
|
@ -309,9 +309,10 @@ this switch, unless you are going to debug the Ruby interpreter.
|
||||||
.Sh ENVIRONMENT
|
.Sh ENVIRONMENT
|
||||||
.Bl -tag -width "RUBYLIB_PREFIX" -compact
|
.Bl -tag -width "RUBYLIB_PREFIX" -compact
|
||||||
.It Ev RUBYLIB
|
.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
|
library load path
|
||||||
.Pf ( Li "$:" ) .
|
.Pf ( Li "$:" ) . Directories from this environment variable are searched
|
||||||
|
before the standard load path is searched.
|
||||||
.Pp
|
.Pp
|
||||||
e.g.:
|
e.g.:
|
||||||
.Dl RUBYLIB="$HOME/lib/ruby:$HOME/lib/rubyext"
|
.Dl RUBYLIB="$HOME/lib/ruby:$HOME/lib/rubyext"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue