comparison src/coding.h @ 83566:ddc474387d53

Import arch branch emacs@sv.gnu.org/emacs--multi-tty--0
author Miles Bader <miles@gnu.org>
date Sun, 13 May 2007 13:26:57 +0000
parents b8d9a391daf3
children 65663fcd2caa
comparison
equal deleted inserted replaced
80895:776cb0a1bb24 83566:ddc474387d53
694 694
695 /* If non-zero, process buffer inherits the coding system used to decode 695 /* If non-zero, process buffer inherits the coding system used to decode
696 the subprocess output. */ 696 the subprocess output. */
697 extern int inherit_process_coding_system; 697 extern int inherit_process_coding_system;
698 698
699 /* Coding-system to be used for encoding terminal output. This
700 structure contains information of a coding-system specified by the
701 function `set-terminal-coding-system'. */
702 extern struct coding_system terminal_coding;
703
704 /* Coding system to be used to encode text for terminal display when 699 /* Coding system to be used to encode text for terminal display when
705 terminal coding system is nil. */ 700 terminal coding system is nil. */
706 extern struct coding_system safe_terminal_coding; 701 extern struct coding_system safe_terminal_coding;
707 702
708 /* Coding-system of what is sent from terminal keyboard. This
709 structure contains information of a coding-system specified by the
710 function `set-keyboard-coding-system'. */
711 extern struct coding_system keyboard_coding;
712
713 /* Default coding system to be used to write a file. */ 703 /* Default coding system to be used to write a file. */
714 extern struct coding_system default_buffer_file_coding; 704 extern struct coding_system default_buffer_file_coding;
715 705
716 /* Default coding systems used for process I/O. */ 706 /* Default coding systems used for process I/O. */
717 extern Lisp_Object Vdefault_process_coding_system; 707 extern Lisp_Object Vdefault_process_coding_system;