Allow entering the debugger on error in emacsclient connections
* lisp/server.el (server--process-filter-1): Use 'condition-case-unless-debug'. (Bug#65897)
This commit is contained in:
parent
32d3c859f0
commit
98fbaacac2
1 changed files with 1 additions and 1 deletions
|
|
@ -1232,7 +1232,7 @@ The following commands are accepted by the client:
|
|||
(when prev
|
||||
(setq string (concat prev string))
|
||||
(process-put proc 'previous-string nil)))
|
||||
(condition-case err
|
||||
(condition-case-unless-debug err
|
||||
(progn
|
||||
(server-add-client proc)
|
||||
;; Send our pid
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue