1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Handle non-error signals in emacsclient --eval (Bug#10989)

* lisp/server.el (server-process-filter): Handle any signal, not just
errors.
This commit is contained in:
Noam Postavsky 2018-09-02 18:56:38 -04:00
parent 425c281164
commit c0f688808e

View file

@ -1297,7 +1297,7 @@ The following commands are accepted by the client:
(server-execute-continuation proc))))
;; condition-case
(error (server-return-error proc err))))
(t (server-return-error proc err))))
(defun server-execute (proc files nowait commands dontkill create-frame-func tty-name)
;; This is run from timers and process-filters, i.e. "asynchronously".