diff options
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/ruby-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index e13e84633..e0dd56846 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -302,8 +302,8 @@ The variable ruby-indent-level controls the amount of indentation. (defun ruby-expr-beg (&optional option) (save-excursion (store-match-data nil) - (let ((start (point)) - (space (skip-chars-backward " \t"))) + (let ((space (skip-chars-backward " \t")) + (start (point))) (cond ((bolp) t) ((progn |
