aboutsummaryrefslogtreecommitdiffstats
path: root/src/chartab.c
diff options
context:
space:
mode:
authorKenichi Handa2004-04-16 12:51:06 +0000
committerKenichi Handa2004-04-16 12:51:06 +0000
commit6b61353c0a0320ee15bb6488149735381fed62ec (patch)
treee69adba60e504a5a37beb556ad70084de88a7aab /src/chartab.c
parentdc6a28319312fe81f7a1015e363174022313f0bd (diff)
downloademacs-6b61353c0a0320ee15bb6488149735381fed62ec.tar.gz
emacs-6b61353c0a0320ee15bb6488149735381fed62ec.zip
Sync to HEAD
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
512DEFUN ("set-char-table-parent", Fset_char_table_parent, Sset_char_table_parent, 512DEFUN ("set-char-table-parent", Fset_char_table_parent, Sset_char_table_parent,
513 2, 2, 0, 513 2, 2, 0,
514 doc: /* Set the parent char-table of CHAR-TABLE to PARENT. 514 doc: /* Set the parent char-table of CHAR-TABLE to PARENT.
515PARENT must be either nil or another char-table. */) 515Return PARENT. PARENT must be either nil or another char-table. */)
516 (char_table, parent) 516 (char_table, parent)
517 Lisp_Object char_table, parent; 517 Lisp_Object char_table, parent;
518{ 518{
@@ -597,10 +597,10 @@ a cons of character codes (for characters in the range), or a character code. *
597 597
598DEFUN ("set-char-table-range", Fset_char_table_range, Sset_char_table_range, 598DEFUN ("set-char-table-range", Fset_char_table_range, Sset_char_table_range,
599 3, 3, 0, 599 3, 3, 0,
600 doc: /* 600 doc: /* Set the value in CHAR-TABLE for a range of characters RANGE to VALUE.
601Set the value in CHAR-TABLE for characters specified by RANGE to VALUE.
602RANGE should be t (for all characters), nil (for the default value), 601RANGE should be t (for all characters), nil (for the default value),
603a cons of character codes (for characters in the range), or a character code. */) 602a cons of character codes (for characters in the range),
603or a character code. Return VALUE. */)
604 (char_table, range, value) 604 (char_table, range, value)
605 Lisp_Object char_table, range, value; 605 Lisp_Object char_table, range, value;
606{ 606{