diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-08-18 14:03:57 +0200 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-08-18 14:03:57 +0200 |
commit | b3a8fe90e79d93e432c633b598f127ec7a1f4930 (patch) | |
tree | b13468519f59840f042191305e90b7fcf2cbcbfe /lisp/emacs-lisp | |
parent | 9acd1bdcb92f77cb7d5312d69d47ff2942751132 (diff) | |
download | emacs-b3a8fe90e79d93e432c633b598f127ec7a1f4930.tar.gz emacs-b3a8fe90e79d93e432c633b598f127ec7a1f4930.tar.bz2 emacs-b3a8fe90e79d93e432c633b598f127ec7a1f4930.zip |
* smie.el (smie-forward-sexp-command): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/smie.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/smie.el b/lisp/emacs-lisp/smie.el index cb8e8fd9843..ee25551e102 100644 --- a/lisp/emacs-lisp/smie.el +++ b/lisp/emacs-lisp/smie.el @@ -505,7 +505,7 @@ Possible return values: (res (if forw (smie-forward-sexp 'halfsexp) (smie-backward-sexp 'halfsexp)))) - (if (and (car res) (= pos (point)) (not (if forw (eolp) (bobp)))) + (if (and (car res) (= pos (point)) (not (if forw (eobp) (bobp)))) (signal 'scan-error (list "Containing expression ends prematurely" (cadr res) (cadr res))) |