diff options
| author | Kenichi Handa | 2001-01-24 23:30:16 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-01-24 23:30:16 +0000 |
| commit | 6041c9ce6b6b3a763dcf9f0f0df5742a8c1e3713 (patch) | |
| tree | d032692b6229d50c21d3ec8adc38ad7fba261efa /src/coding.h | |
| parent | ae08ba36c9f16b0763f84cea5afdab561bd08c3f (diff) | |
| download | emacs-6041c9ce6b6b3a763dcf9f0f0df5742a8c1e3713.tar.gz emacs-6041c9ce6b6b3a763dcf9f0f0df5742a8c1e3713.zip | |
(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 | |||
| 412 | CODING_FINISH_XXXX. */ | 412 | CODING_FINISH_XXXX. */ |
| 413 | int result; | 413 | int result; |
| 414 | 414 | ||
| 415 | /* If nonzero, suppress error notification. */ | ||
| 416 | int suppress_error; | ||
| 417 | |||
| 415 | /* The following members are all Lisp symbols. We don't have to | 418 | /* The following members are all Lisp symbols. We don't have to |
| 416 | protect them from GC because the current garbage collection | 419 | protect them from GC because the current garbage collection |
| 417 | doesn't relocate Lisp symbols. But, when it is changed, we must | 420 | doesn't relocate Lisp symbols. But, when it is changed, we must |