aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-12 22:18:51 +0000
committerJuanma Barranquero2006-11-12 22:18:51 +0000
commit8acf0c0e204877d3c24fcbea6b9e2f84af23678a (patch)
treebac10832e917cad531351546996e2265e6ca4f3a /src
parent2b8ecab897aea6f1303c1ff2ac4b700dcdc31139 (diff)
downloademacs-8acf0c0e204877d3c24fcbea6b9e2f84af23678a.tar.gz
emacs-8acf0c0e204877d3c24fcbea6b9e2f84af23678a.zip
(Fencode_sjis_char, Fencode_big5_char): Improve argument/docstring consistency.
Diffstat (limited to 'src')
-rw-r--r--src/coding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c
index 1603b44e098..244861fe884 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -7274,7 +7274,7 @@ Return the corresponding character. */)
7274} 7274}
7275 7275
7276DEFUN ("encode-sjis-char", Fencode_sjis_char, Sencode_sjis_char, 1, 1, 0, 7276DEFUN ("encode-sjis-char", Fencode_sjis_char, Sencode_sjis_char, 1, 1, 0,
7277 doc: /* Encode a Japanese character CHAR to shift_jis encoding. 7277 doc: /* Encode a Japanese character CH to shift_jis encoding.
7278Return the corresponding code in SJIS. */) 7278Return the corresponding code in SJIS. */)
7279 (ch) 7279 (ch)
7280 Lisp_Object ch; 7280 Lisp_Object ch;
@@ -7334,7 +7334,7 @@ Return the corresponding character. */)
7334} 7334}
7335 7335
7336DEFUN ("encode-big5-char", Fencode_big5_char, Sencode_big5_char, 1, 1, 0, 7336DEFUN ("encode-big5-char", Fencode_big5_char, Sencode_big5_char, 1, 1, 0,
7337 doc: /* Encode the Big5 character CHAR to BIG5 coding system. 7337 doc: /* Encode the Big5 character CH to BIG5 coding system.
7338Return the corresponding character code in Big5. */) 7338Return the corresponding character code in Big5. */)
7339 (ch) 7339 (ch)
7340 Lisp_Object ch; 7340 Lisp_Object ch;