From: Eli Zaretskii Date: Thu, 25 Jan 2001 09:46:23 +0000 (+0000) Subject: (ccl_driver): Fix last change. X-Git-Tag: emacs-pretest-21.0.96~105 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0fb94c7febd0cc19794a48b177135c918b77a92e;p=emacs.git (ccl_driver): Fix last change. --- diff --git a/src/ChangeLog b/src/ChangeLog index 4a4197c9331..bf5ea298724 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2001-01-25 Eli Zaretskii + + * ccl.c (ccl_driver): Fix last change. + 2001-01-25 Kenichi Handa * ccl.h (sturct ccl_program): New member suppress_error. diff --git a/src/ccl.c b/src/ccl.c index 259ae8662f5..f5f024bf8d6 100644 --- a/src/ccl.c +++ b/src/ccl.c @@ -1720,8 +1720,9 @@ ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed) } ccl_error_handler: - if (ccl->suppress_error - && destination) + /* The suppress_error member is set when e.g. a CCL-based coding + system is used for terminal output. */ + if (!ccl->suppress_error && destination) { /* We can insert an error message only if DESTINATION is specified and we still have a room to store the message