diff options
| author | Eli Zaretskii | 2015-01-31 20:48:53 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2015-01-31 20:48:53 +0200 |
| commit | a2c32b0cfc9f6d3410e2832d8ea0d4f1df576d1e (patch) | |
| tree | c2c1167bcd193c53c7293d77b5eb3210c33399ef /src/coding.h | |
| parent | 080b9b56c99cfdfa286fb6b8c3099626688dc8ae (diff) | |
| download | emacs-a2c32b0cfc9f6d3410e2832d8ea0d4f1df576d1e.tar.gz emacs-a2c32b0cfc9f6d3410e2832d8ea0d4f1df576d1e.zip | |
Avoid aborts when keyboard-coding-system is raw-text (Bug#19532)
src/coding.c (raw_text_coding_system_p): New function.
src/keyboard.c (read_decoded_event_from_main_queue): Use it when the
keyboard coding-system is 'raw-text'.
src/coding.h (raw_text_coding_system_p): Add prototype.
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/coding.h b/src/coding.h index d49d786e6dd..c73a9cc3263 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -705,6 +705,7 @@ extern Lisp_Object code_convert_string_norecord (Lisp_Object, Lisp_Object, | |||
| 705 | extern Lisp_Object encode_file_name (Lisp_Object); | 705 | extern Lisp_Object encode_file_name (Lisp_Object); |
| 706 | extern Lisp_Object decode_file_name (Lisp_Object); | 706 | extern Lisp_Object decode_file_name (Lisp_Object); |
| 707 | extern Lisp_Object raw_text_coding_system (Lisp_Object); | 707 | extern Lisp_Object raw_text_coding_system (Lisp_Object); |
| 708 | extern bool raw_text_coding_system_p (struct coding_system *); | ||
| 708 | extern Lisp_Object coding_inherit_eol_type (Lisp_Object, Lisp_Object); | 709 | extern Lisp_Object coding_inherit_eol_type (Lisp_Object, Lisp_Object); |
| 709 | extern Lisp_Object complement_process_encoding_system (Lisp_Object); | 710 | extern Lisp_Object complement_process_encoding_system (Lisp_Object); |
| 710 | 711 | ||