aboutsummaryrefslogtreecommitdiffstats
path: root/src/chartab.c
diff options
context:
space:
mode:
authorChong Yidong2012-08-15 00:28:23 +0800
committerChong Yidong2012-08-15 00:28:23 +0800
commit55802e4a3dc1d6b1ffa05c193cdd94f9f69c1a41 (patch)
treeadc01d112307b091888d9e61c4b5c38590593ab5 /src/chartab.c
parente38b9db247bec5413de0cd1001d376941a59ba29 (diff)
downloademacs-55802e4a3dc1d6b1ffa05c193cdd94f9f69c1a41.tar.gz
emacs-55802e4a3dc1d6b1ffa05c193cdd94f9f69c1a41.zip
Doc fixes.
* lisp/emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix. * src/chartab.c (Fmap_char_table): Doc fix. * src/editfns.c (Fformat): Doc fix. Fixes: debbugs:12059 debbugs:12085 debbugs:12061
Diffstat (limited to 'src/chartab.c')
-rw-r--r--src/chartab.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/chartab.c b/src/chartab.c
index e1252962612..c022bc03e66 100644
--- a/src/chartab.c
+++ b/src/chartab.c
@@ -945,11 +945,11 @@ map_char_table (void (*c_function) (Lisp_Object, Lisp_Object, Lisp_Object),
945 945
946DEFUN ("map-char-table", Fmap_char_table, Smap_char_table, 946DEFUN ("map-char-table", Fmap_char_table, Smap_char_table,
947 2, 2, 0, 947 2, 2, 0,
948 doc: /* 948 doc: /* Call FUNCTION for each character in CHAR-TABLE that has non-nil value.
949Call FUNCTION for each character in CHAR-TABLE that has non-nil value. 949FUNCTION is called with two arguments, KEY and VALUE.
950FUNCTION is called with two arguments--a key and a value. 950KEY is a character code or a cons of character codes specifying a
951The key is a character code or a cons of character codes specifying a 951range of characters that have the same value.
952range of characters that have the same value. */) 952VALUE is what (char-table-range CHAR-TABLE KEY) returns. */)
953 (Lisp_Object function, Lisp_Object char_table) 953 (Lisp_Object function, Lisp_Object char_table)
954{ 954{
955 CHECK_CHAR_TABLE (char_table); 955 CHECK_CHAR_TABLE (char_table);