diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/coding.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 68f74e457e9..cbbf4ab09a7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-05-23 K,Ba(Broly L,Bu(Brentey <lorentey@elte.hu> (tiny change) | ||
| 2 | |||
| 3 | * coding.c (Fset_safe_terminal_coding_system_internal): Set | ||
| 4 | suppress_error in safe_terminal_coding, not terminal_coding. | ||
| 5 | |||
| 1 | 2004-05-22 Richard M. Stallman <rms@gnu.org> | 6 | 2004-05-22 Richard M. Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * alloc.c (Fmake_string): Doc fix. | 8 | * alloc.c (Fmake_string): Doc fix. |
diff --git a/src/coding.c b/src/coding.c index 76ef3026a2d..abf60da44f8 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7209,7 +7209,7 @@ DEFUN ("set-safe-terminal-coding-system-internal", Fset_safe_terminal_coding_sys | |||
| 7209 | /* Character composition should be disabled. */ | 7209 | /* Character composition should be disabled. */ |
| 7210 | safe_terminal_coding.composing = COMPOSITION_DISABLED; | 7210 | safe_terminal_coding.composing = COMPOSITION_DISABLED; |
| 7211 | /* Error notification should be suppressed. */ | 7211 | /* Error notification should be suppressed. */ |
| 7212 | terminal_coding.suppress_error = 1; | 7212 | safe_terminal_coding.suppress_error = 1; |
| 7213 | safe_terminal_coding.src_multibyte = 1; | 7213 | safe_terminal_coding.src_multibyte = 1; |
| 7214 | safe_terminal_coding.dst_multibyte = 0; | 7214 | safe_terminal_coding.dst_multibyte = 0; |
| 7215 | return Qnil; | 7215 | return Qnil; |