From b3a8fe90e79d93e432c633b598f127ec7a1f4930 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 18 Aug 2010 14:03:57 +0200 Subject: [PATCH] * smie.el (smie-forward-sexp-command): Fix typo. --- lisp/emacs-lisp/smie.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) -- 2.11.4.GIT