# HG changeset patch # User Stefan Monnier # Date 1282133037 -7200 # Node ID 51f5fd9b5515ac86ee0c0bcc0da699c95d70386a # Parent f2b0181ddf31c4574f7a75df881a563ad76e71fc * smie.el (smie-forward-sexp-command): Fix typo. diff -r f2b0181ddf31 -r 51f5fd9b5515 lisp/emacs-lisp/smie.el --- a/lisp/emacs-lisp/smie.el Wed Aug 18 13:01:15 2010 +0200 +++ b/lisp/emacs-lisp/smie.el Wed Aug 18 14:03:57 2010 +0200 @@ -505,7 +505,7 @@ (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)))