mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-01 11:14:55 +00:00
* server.el (server-process-filter): Suppress `error', too.
This commit is contained in:
parent
0c753fd78f
commit
51b4073ade
@ -1,3 +1,7 @@
|
||||
2004-12-31 Masatake YAMATO <jet@gyve.org>
|
||||
|
||||
* server.el (server-process-filter): Suppress `error', too.
|
||||
|
||||
2004-12-30 Jay Belanger <belanger@truman.edu>
|
||||
|
||||
* calc/calc-store.el (calc-copy-variable): Fix mistyped variable
|
||||
|
@ -346,7 +346,8 @@ PROC is the server process. Format of STRING is \"PATH PATH PATH... \\n\"."
|
||||
;; Suppress the error rose when the pipe to PROC is closed.
|
||||
(condition-case err
|
||||
(process-send-region proc (point-min) (point-max))
|
||||
(file-error nil))
|
||||
(file-error nil)
|
||||
(error nil))
|
||||
))))
|
||||
;; ARG is a file name.
|
||||
;; Collapse multiple slashes to single slashes.
|
||||
|
Loading…
Reference in New Issue
Block a user