]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/smie.el (smie-next-sexp): Fix bug#38255
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 21 Nov 2019 23:24:37 +0000 (18:24 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 21 Nov 2019 23:25:00 +0000 (18:25 -0500)
Handle the case where the token is not in `smie-grammar`, either because
the caller is making an error, or because it's a paren-like token that's
not handled in the grammar but directly via the syntax tables.

lisp/emacs-lisp/smie.el

index f2163b243ee7a2e6509ee5ac2086e7774c82cb3a..2c2898ae718d1e54e203a395364fb4562aea3b49 100644 (file)
@@ -702,7 +702,11 @@ Possible return values:
   (catch 'return
     (let ((levels
            (if (stringp halfsexp)
-               (prog1 (list (cdr (assoc halfsexp smie-grammar)))
+               (prog1 (list (or (cdr (assoc halfsexp smie-grammar))
+                                (when (string-match "\\`\\s(\\|\\s)\\(\\)\\'"
+                                                    halfsexp)
+                                  (if (match-end 1) '(0 nil) '(nil 0)))
+                                (error "Unknown token: %S" halfsexp)))
                  (setq halfsexp nil)))))
       (while
           (let* ((pos (point))