1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-10 08:10:21 -08:00

* smie.el (smie-forward-sexp-command): Fix typo.

This commit is contained in:
Stefan Monnier 2010-08-18 14:03:57 +02:00
parent 9acd1bdcb9
commit b3a8fe90e7

View file

@ -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)))