summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Kearns <dkearns@users.sourceforge.net>2005-07-11 10:21:52 +0000
committerDoug Kearns <dkearns@users.sourceforge.net>2005-07-11 10:21:52 +0000
commitec8bbd0e942a64e6fac743f2b2f20c5e042ef1dc (patch)
treefe9af74af937558c308dc0782b77e16a9c215d31
parent80e8e43f76fe7afc5e447c1289fcdc0408c351e8 (diff)
downloadzsh-ec8bbd0e942a64e6fac743f2b2f20c5e042ef1dc.tar.gz
zsh-ec8bbd0e942a64e6fac743f2b2f20c5e042ef1dc.zip
unposted: fix typo in first normal arg action of _ruby
-rw-r--r--ChangeLog4
-rw-r--r--Completion/Unix/Command/_ruby2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e9fb546ed..60b811106 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-11 Doug Kearns <djkea2@gus.gscit.monash.edu.au>
+
+ * unposted: fix typo in first normal arg action
+
2005-07-10 Bart Schaefer <schaefer@zsh.org>
* 21423: Travis Spencer: Completion/Unix/Command/_unexpand:
diff --git a/Completion/Unix/Command/_ruby b/Completion/Unix/Command/_ruby
index d0f3c3eb0..8a93be521 100644
--- a/Completion/Unix/Command/_ruby
+++ b/Completion/Unix/Command/_ruby
@@ -7,7 +7,7 @@ typeset -A opt_args
local -a args
args=(
- '(-)1:script file:->script'
+ '(-)1:script file:_files -g "*.rb(-.)"'
'*::script argument: _normal'
)