diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-04-12 12:03:26 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-04-12 12:03:26 +0000 |
commit | d654fad790c41bcada4ba81f1f567970beeaac33 (patch) | |
tree | e6f444674adaf5cbc84aa5aeeb160f6dbf4dcb69 | |
parent | 8cc5eecec41e15a83c094847644d2e7d06355946 (diff) | |
download | ruby-d654fad790c41bcada4ba81f1f567970beeaac33.tar.gz ruby-d654fad790c41bcada4ba81f1f567970beeaac33.tar.xz ruby-d654fad790c41bcada4ba81f1f567970beeaac33.zip |
* misc/ruby-mode.el (ruby-forward-sexp): missed argument for forward-word.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3675 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | misc/ruby-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index 077866fee..ebb47c9e8 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -832,7 +832,7 @@ An end of a defun is found by moving forward from the beginning of one." (skip-chars-forward "<")) (not expr)))) (setq i (1- i))) - ((error) (forward-word))) + ((error) (forward-word 1))) i))) (defun-region-command ruby-backward-sexp (&optional cnt) |