From f49ebbabe230b295eaa441ac96082c1e323fe2ec Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 14 Jan 2008 07:14:14 +0000 Subject: * lib/shellwords.rb: scape should be an alias to shellescape. a patch from Masahiro Kawato in [ruby-dev:33060]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15036 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ lib/shellwords.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1ef9fa723..89e73dd7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Jan 14 16:12:58 2008 Yukihiro Matsumoto + + * lib/shellwords.rb: scape should be an alias to shellescape. a + patch from Masahiro Kawato in + [ruby-dev:33060]. + Mon Jan 14 16:09:16 2008 Yukihiro Matsumoto * ruby.1: a patch to describe --encoding. a patch from Yugui diff --git a/lib/shellwords.rb b/lib/shellwords.rb index ff1474b4e..3709ace30 100644 --- a/lib/shellwords.rb +++ b/lib/shellwords.rb @@ -86,7 +86,7 @@ module Shellwords module_function :shellescape class << self - alias escape shellsplit + alias escape shellescape end # -- cgit