aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/ChangeLog13
-rw-r--r--src/coding.c3
2 files changed, 15 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4c0b59bf28b..dff8f6abe2d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,15 @@
12002-05-09 Dave Love <fx@gnu.org>
2
3 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
4
5 * dispextern.h (generate_ascii_font): Fix return type.
6
7 * xfaces.c (generate_ascii_font): Fix arg declaration.
8
9 * coding.c (coding_inherit_eol_type)
10 (Fset_terminal_coding_system_internal)
11 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
12
12002-05-08 Kenichi Handa <handa@etl.go.jp> 132002-05-08 Kenichi Handa <handa@etl.go.jp>
2 14
3 * coding.c (decode_coding_charset, encode_coding_charset): Handle 15 * coding.c (decode_coding_charset, encode_coding_charset): Handle
@@ -68,7 +80,6 @@
68 * coding.c (produce_chars): Set the variable `multibytep' correctly. 80 * coding.c (produce_chars): Set the variable `multibytep' correctly.
69 (decode_coding_gap): Set coding->dst_multibyte correctly. 81 (decode_coding_gap): Set coding->dst_multibyte correctly.
70 82
71>>>>>>> 1.2479.2.9
722002-03-07 Kenichi Handa <handa@etl.go.jp> 832002-03-07 Kenichi Handa <handa@etl.go.jp>
73 84
74 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0. 85 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
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),