summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2016-03-16 22:55:56 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2016-03-16 22:55:56 -0400
commita1ef911f31b81a47482dca4ea01f2c90442c0724 (patch)
treec4e13ce7454a8185cb089b8891679b575d7f0640
parent79ae7fbe915f761f166a33f791311eab6b8f6713 (diff)
downloademacs-a1ef911f31b81a47482dca4ea01f2c90442c0724.tar.gz
* lisp/emacs-lisp/smie.el (smie-indent-keyword): Don't burp in strings
(bug#22960).
-rw-r--r--lisp/emacs-lisp/smie.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/smie.el b/lisp/emacs-lisp/smie.el
index 495ba7cb859..1d8f0cb8f5d 100644
--- a/lisp/emacs-lisp/smie.el
+++ b/lisp/emacs-lisp/smie.el
@@ -1493,7 +1493,10 @@ should not be computed on the basis of the following token."
(let ((endpos (point)))
(goto-char pos)
(forward-line 1)
- (and (equal res (smie-indent-forward-token))
+ ;; As seen in bug#22960, pos may be inside
+ ;; a string, and forward-token may then stumble.
+ (and (ignore-errors
+ (equal res (smie-indent-forward-token)))
(eq (point) endpos)))))
nil
(goto-char pos)