aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/coding.h b/src/coding.h
index e424ab72fa4..ac53d3b164a 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -769,11 +769,6 @@ extern Lisp_Object Qunix, Qdos, Qmac;
769extern Lisp_Object Qtranslation_table; 769extern Lisp_Object Qtranslation_table;
770extern Lisp_Object Qtranslation_table_id; 770extern Lisp_Object Qtranslation_table_id;
771 771
772/* Mnemonic strings to indicate each type of end-of-line. */
773extern Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac;
774/* Mnemonic string to indicate type of end-of-line is not yet decided. */
775extern Lisp_Object eol_mnemonic_undecided;
776
777#ifdef emacs 772#ifdef emacs
778extern Lisp_Object Qfile_coding_system; 773extern Lisp_Object Qfile_coding_system;
779extern Lisp_Object Qcall_process, Qcall_process_region; 774extern Lisp_Object Qcall_process, Qcall_process_region;
@@ -782,44 +777,10 @@ extern Lisp_Object Qwrite_region;
782 777
783extern char *emacs_strerror (int); 778extern char *emacs_strerror (int);
784 779
785/* Coding-system for reading files and receiving data from process. */
786extern Lisp_Object Vcoding_system_for_read;
787/* Coding-system for writing files and sending data to process. */
788extern Lisp_Object Vcoding_system_for_write;
789/* Coding-system actually used in the latest I/O. */
790extern Lisp_Object Vlast_coding_system_used;
791/* Coding-system to use with system messages (e.g. strerror). */
792extern Lisp_Object Vlocale_coding_system;
793
794/* If non-zero, process buffer inherits the coding system used to decode
795 the subprocess output. */
796extern int inherit_process_coding_system;
797
798/* Coding system to be used to encode text for terminal display when 780/* Coding system to be used to encode text for terminal display when
799 terminal coding system is nil. */ 781 terminal coding system is nil. */
800extern struct coding_system safe_terminal_coding; 782extern struct coding_system safe_terminal_coding;
801 783
802/* Default coding systems used for process I/O. */
803extern Lisp_Object Vdefault_process_coding_system;
804
805/* Char table for translating Quail and self-inserting input. */
806extern Lisp_Object Vtranslation_table_for_input;
807
808/* Function to call to force a user to force select a propert coding
809 system. */
810extern Lisp_Object Vselect_safe_coding_system_function;
811
812/* If nonzero, on writing a file, Vselect_safe_coding_system_function
813 is called even if Vcoding_system_for_write is non-nil. */
814extern int coding_system_require_warning;
815
816/* Coding system for file names, or nil if none. */
817extern Lisp_Object Vfile_name_coding_system;
818
819/* Coding system for file names used only when
820 Vfile_name_coding_system is nil. */
821extern Lisp_Object Vdefault_file_name_coding_system;
822
823#endif 784#endif
824 785
825/* Error signaled when there's a problem with detecting coding system */ 786/* Error signaled when there's a problem with detecting coding system */