aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorDave Love2002-05-09 18:00:40 +0000
committerDave Love2002-05-09 18:00:40 +0000
commitb74e4686d549abe1ff888e92d77b7e1d8e90b897 (patch)
tree4fd1854b2877ff4e0bfa6bb1d9dfd9f284352cc5 /src/coding.c
parentadab24c879fcc50f6c55f20bce0e714584a9e971 (diff)
downloademacs-b74e4686d549abe1ff888e92d77b7e1d8e90b897.tar.gz
emacs-b74e4686d549abe1ff888e92d77b7e1d8e90b897.zip
(coding_inherit_eol_type)
(Fset_terminal_coding_system_internal) (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c
index ae7c52918e1..be18ab80c3b 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -4651,6 +4651,7 @@ raw_text_coding_system (coding_system)
4651 4651
4652Lisp_Object 4652Lisp_Object
4653coding_inherit_eol_type (coding_system, parent) 4653coding_inherit_eol_type (coding_system, parent)
4654 Lisp_Object coding_system, parent;
4654{ 4655{
4655 Lisp_Object spec, attrs, eol_type; 4656 Lisp_Object spec, attrs, eol_type;
4656 4657
@@ -6940,6 +6941,7 @@ DEFUN ("set-terminal-coding-system-internal",
6940 Sset_terminal_coding_system_internal, 1, 1, 0, 6941 Sset_terminal_coding_system_internal, 1, 1, 0,
6941 doc: /* Internal use only. */) 6942 doc: /* Internal use only. */)
6942 (coding_system) 6943 (coding_system)
6944 Lisp_Object coding_system;
6943{ 6945{
6944 CHECK_SYMBOL (coding_system); 6946 CHECK_SYMBOL (coding_system);
6945 setup_coding_system (Fcheck_coding_system (coding_system), 6947 setup_coding_system (Fcheck_coding_system (coding_system),
@@ -6959,6 +6961,7 @@ DEFUN ("set-safe-terminal-coding-system-internal",
6959 Sset_safe_terminal_coding_system_internal, 1, 1, 0, 6961 Sset_safe_terminal_coding_system_internal, 1, 1, 0,
6960 doc: /* Internal use only. */) 6962 doc: /* Internal use only. */)
6961 (coding_system) 6963 (coding_system)
6964 Lisp_Object coding_system;
6962{ 6965{
6963 CHECK_SYMBOL (coding_system); 6966 CHECK_SYMBOL (coding_system);
6964 setup_coding_system (Fcheck_coding_system (coding_system), 6967 setup_coding_system (Fcheck_coding_system (coding_system),