summaryrefslogtreecommitdiff
path: root/src/chartab.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chartab.c')
-rw-r--r--src/chartab.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/chartab.c b/src/chartab.c
index c33ec0e7d06..71940761bfa 100644
--- a/src/chartab.c
+++ b/src/chartab.c
@@ -512,7 +512,7 @@ then the actual applicable value is inherited from the parent char-table
DEFUN ("set-char-table-parent", Fset_char_table_parent, Sset_char_table_parent,
2, 2, 0,
doc: /* Set the parent char-table of CHAR-TABLE to PARENT.
-PARENT must be either nil or another char-table. */)
+Return PARENT. PARENT must be either nil or another char-table. */)
(char_table, parent)
Lisp_Object char_table, parent;
{
@@ -597,10 +597,10 @@ a cons of character codes (for characters in the range), or a character code. *
DEFUN ("set-char-table-range", Fset_char_table_range, Sset_char_table_range,
3, 3, 0,
- doc: /*
-Set the value in CHAR-TABLE for characters specified by RANGE to VALUE.
+ doc: /* Set the value in CHAR-TABLE for a range of characters RANGE to VALUE.
RANGE should be t (for all characters), nil (for the default value),
-a cons of character codes (for characters in the range), or a character code. */)
+a cons of character codes (for characters in the range),
+or a character code. Return VALUE. */)
(char_table, range, value)
Lisp_Object char_table, range, value;
{