diff options
| author | Kenichi Handa | 2004-04-16 12:51:06 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2004-04-16 12:51:06 +0000 |
| commit | 6b61353c0a0320ee15bb6488149735381fed62ec (patch) | |
| tree | e69adba60e504a5a37beb556ad70084de88a7aab /src/chartab.c | |
| parent | dc6a28319312fe81f7a1015e363174022313f0bd (diff) | |
| download | emacs-6b61353c0a0320ee15bb6488149735381fed62ec.tar.gz emacs-6b61353c0a0320ee15bb6488149735381fed62ec.zip | |
Sync to HEAD
Diffstat (limited to 'src/chartab.c')
| -rw-r--r-- | src/chartab.c | 8 |
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 | |||
| 512 | DEFUN ("set-char-table-parent", Fset_char_table_parent, Sset_char_table_parent, | 512 | DEFUN ("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. |
| 515 | PARENT must be either nil or another char-table. */) | 515 | Return 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 | ||
| 598 | DEFUN ("set-char-table-range", Fset_char_table_range, Sset_char_table_range, | 598 | DEFUN ("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. |
| 601 | Set the value in CHAR-TABLE for characters specified by RANGE to VALUE. | ||
| 602 | RANGE should be t (for all characters), nil (for the default value), | 601 | RANGE should be t (for all characters), nil (for the default value), |
| 603 | a cons of character codes (for characters in the range), or a character code. */) | 602 | a cons of character codes (for characters in the range), |
| 603 | or 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 | { |