changeset 59220:2375d42b7362

* server.el (server-process-filter): Suppress `error', too.
author Masatake YAMATO <jet@gyve.org>
date Thu, 30 Dec 2004 23:14:25 +0000
parents cb04f0d9be07
children 4de707f3cc8e
files lisp/ChangeLog lisp/server.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Thu Dec 30 19:45:12 2004 +0000
+++ b/lisp/ChangeLog	Thu Dec 30 23:14:25 2004 +0000
@@ -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
--- a/lisp/server.el	Thu Dec 30 19:45:12 2004 +0000
+++ b/lisp/server.el	Thu Dec 30 23:14:25 2004 +0000
@@ -346,7 +346,8 @@
 			;; 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.