diff options
author | Kenichi Handa <handa@m17n.org> | 2001-01-24 23:30:16 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2001-01-24 23:30:16 +0000 |
commit | 6041c9ce6b6b3a763dcf9f0f0df5742a8c1e3713 (patch) | |
tree | d032692b6229d50c21d3ec8adc38ad7fba261efa /src/coding.h | |
parent | ae08ba36c9f16b0763f84cea5afdab561bd08c3f (diff) | |
download | emacs-6041c9ce6b6b3a763dcf9f0f0df5742a8c1e3713.tar.gz |
(struct coding_system): New member suppress_error.
Diffstat (limited to 'src/coding.h')
-rw-r--r-- | src/coding.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/coding.h b/src/coding.h index 087896ea6b5..303bceda329 100644 --- a/src/coding.h +++ b/src/coding.h @@ -412,6 +412,9 @@ struct coding_system CODING_FINISH_XXXX. */ int result; + /* If nonzero, suppress error notification. */ + int suppress_error; + /* The following members are all Lisp symbols. We don't have to protect them from GC because the current garbage collection doesn't relocate Lisp symbols. But, when it is changed, we must |