Skip to content

Commit

Permalink
* lib/English.rb: [DOC] $LOADED_FEATURES moved to load.c [Fixes rubyG…
Browse files Browse the repository at this point in the history
…H-620]

  Patch submitted by @leafac in ruby#620
* doc/globals.rdoc: Added $LOADED_FEATURES to list

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
zzak authored and Mark Lorenz committed Jun 30, 2014
1 parent 9ff6399 commit 850d5c4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
Sun Jun 1 04:52:47 2014 Zachary Scott <e@zzak.io>

* lib/English.rb: [DOC] $LOADED_FEATURES moved to load.c [Fixes GH-620]
Patch submitted by @leafac in https://github.com/ruby/ruby/pull/620
* doc/globals.rdoc: Added $LOADED_FEATURES to list

Sat May 31 22:30:14 2014 Tanaka Akira <akr@fsij.org>

* test/lib/leakchecker.rb: Leak checker extracted from
Expand Down
1 change: 1 addition & 0 deletions doc/globals.rdoc
Expand Up @@ -31,6 +31,7 @@ $DEBUG:: The debug flag, which is set by the -d switch. Enabling debug
backtrace). Setting this to a true value enables debug output as
if -d were given on the command line. Setting this to a false
value disables debug output.
$LOADED_FEATURES:: The alias to the $".
$FILENAME:: Current input file from $<. Same as $<.filename.
$LOAD_PATH:: The alias to the $:.
$stderr:: The current standard error output.
Expand Down
4 changes: 2 additions & 2 deletions lib/English.rb
Expand Up @@ -6,15 +6,15 @@
#
# $\ = ' -- '
# "waterbuffalo" =~ /buff/
# print $", $', $$, "\n"
# print $', $$, "\n"
#
# With English:
#
# require "English"
#
# $OUTPUT_FIELD_SEPARATOR = ' -- '
# "waterbuffalo" =~ /buff/
# print $LOADED_FEATURES, $POSTMATCH, $PID, "\n"
# print $POSTMATCH, $PID, "\n"
#
# Below is a full list of descriptive aliases and their associated global
# variable:
Expand Down

0 comments on commit 850d5c4

Please sign in to comment.