mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-03 08:30:09 +00:00
Don't error when indenting malformed Lisp (Bug#30891)
* lisp/emacs-lisp/lisp-mode.el (lisp-indent-calc-next): If we run out of indent stack, reset the parse state.
This commit is contained in:
parent
c3adbc88a0
commit
92de44fa1f
@ -827,6 +827,10 @@ by more than one line to cross a string literal."
|
||||
(prog1
|
||||
(let (indent)
|
||||
(cond ((= (forward-line 1) 1) nil)
|
||||
;; Negative depth, probably some kind of syntax error.
|
||||
((null indent-stack)
|
||||
;; Reset state.
|
||||
(setq ppss (parse-partial-sexp (point) (point))))
|
||||
((car indent-stack))
|
||||
((integerp (setq indent (calculate-lisp-indent ppss)))
|
||||
(setf (car indent-stack) indent))
|
||||
|
Loading…
Reference in New Issue
Block a user