aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/coding.h b/src/coding.h
index 7bbfdbd6621..5ef9f2a08ca 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -551,12 +551,16 @@ extern Lisp_Object Qfile_coding_system;
551extern Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; 551extern Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument;
552extern Lisp_Object Qstart_process, Qopen_network_stream; 552extern Lisp_Object Qstart_process, Qopen_network_stream;
553 553
554extern char *emacs_strerror P_ ((int));
555
554/* Coding-system for reading files and receiving data from process. */ 556/* Coding-system for reading files and receiving data from process. */
555extern Lisp_Object Vcoding_system_for_read; 557extern Lisp_Object Vcoding_system_for_read;
556/* Coding-system for writing files and sending data to process. */ 558/* Coding-system for writing files and sending data to process. */
557extern Lisp_Object Vcoding_system_for_write; 559extern Lisp_Object Vcoding_system_for_write;
558/* Coding-system actually used in the latest I/O. */ 560/* Coding-system actually used in the latest I/O. */
559extern Lisp_Object Vlast_coding_system_used; 561extern Lisp_Object Vlast_coding_system_used;
562/* Coding-system to use with system messages (e.g. strerror). */
563extern Lisp_Object Vlocale_coding_system;
560 564
561/* If non-zero, process buffer inherits the coding system used to decode 565/* If non-zero, process buffer inherits the coding system used to decode
562 the subprocess output. */ 566 the subprocess output. */