]> git.eshelyaron.com Git - emacs.git/commitdiff
* smie.el (smie-forward-sexp-command): Fix typo.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 18 Aug 2010 12:03:57 +0000 (14:03 +0200)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 18 Aug 2010 12:03:57 +0000 (14:03 +0200)
lisp/emacs-lisp/smie.el

index cb8e8fd98434d599e754c856d3ddc727fa7e9353..ee25551e10246546cc1243a43aced463a69d0ce0 100644 (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)))