1
0
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:
Masatake YAMATO 2004-12-30 23:14:25 +00:00
parent 0c753fd78f
commit 51b4073ade
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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.