We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa8c7c commit 2feaf6bCopy full SHA for 2feaf6b
elsa.el
@@ -160,8 +160,10 @@ tokens."
160
(elsa-tostring form)
161
(error-message-string err))))))
162
;; When not running as language server, just crash on errors.
163
- (while (setq form (elsa-read-form state))
164
- (elsa-analyse-form state form))))
+ (condition-case nil
+ (while (setq form (elsa-read-form state))
165
+ (elsa-analyse-form state form))
166
+ (end-of-file t))))
167
(unless no-log
168
(elsa-log
169
(with-ansi
0 commit comments