aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
authorEli Zaretskii2015-01-31 20:48:53 +0200
committerEli Zaretskii2015-01-31 20:48:53 +0200
commita2c32b0cfc9f6d3410e2832d8ea0d4f1df576d1e (patch)
treec2c1167bcd193c53c7293d77b5eb3210c33399ef /src/coding.h
parent080b9b56c99cfdfa286fb6b8c3099626688dc8ae (diff)
downloademacs-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.h1
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,
705extern Lisp_Object encode_file_name (Lisp_Object); 705extern Lisp_Object encode_file_name (Lisp_Object);
706extern Lisp_Object decode_file_name (Lisp_Object); 706extern Lisp_Object decode_file_name (Lisp_Object);
707extern Lisp_Object raw_text_coding_system (Lisp_Object); 707extern Lisp_Object raw_text_coding_system (Lisp_Object);
708extern bool raw_text_coding_system_p (struct coding_system *);
708extern Lisp_Object coding_inherit_eol_type (Lisp_Object, Lisp_Object); 709extern Lisp_Object coding_inherit_eol_type (Lisp_Object, Lisp_Object);
709extern Lisp_Object complement_process_encoding_system (Lisp_Object); 710extern Lisp_Object complement_process_encoding_system (Lisp_Object);
710 711