diff options
| author | Kenichi Handa | 2008-10-25 01:29:47 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-10-25 01:29:47 +0000 |
| commit | f6d2f04567ed5d1a517352149f66ccdafbb5c2ae (patch) | |
| tree | c26411359d94270364524b831fa4e59fec92cd9b /src | |
| parent | ea6c930a8dd83a4e7d7a640c02e8a791458178c0 (diff) | |
| download | emacs-f6d2f04567ed5d1a517352149f66ccdafbb5c2ae.tar.gz emacs-f6d2f04567ed5d1a517352149f66ccdafbb5c2ae.zip | |
(Fdefine_category): Docstring modified for DOCSTRING.
Diffstat (limited to 'src')
| -rw-r--r-- | src/category.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/category.c b/src/category.c index d5776fa4556..9c96021031d 100644 --- a/src/category.c +++ b/src/category.c | |||
| @@ -95,7 +95,9 @@ Lisp_Object check_category_table (); | |||
| 95 | DEFUN ("define-category", Fdefine_category, Sdefine_category, 2, 3, 0, | 95 | DEFUN ("define-category", Fdefine_category, Sdefine_category, 2, 3, 0, |
| 96 | doc: /* Define CATEGORY as a category which is described by DOCSTRING. | 96 | doc: /* Define CATEGORY as a category which is described by DOCSTRING. |
| 97 | CATEGORY should be an ASCII printing character in the range ` ' to `~'. | 97 | CATEGORY should be an ASCII printing character in the range ` ' to `~'. |
| 98 | DOCSTRING is the documentation string of the category. | 98 | DOCSTRING is the documentation string of the category. The first line |
| 99 | should be a terse text (preferably less than 16 characters), | ||
| 100 | and the rest lines should be the full description. | ||
| 99 | The category is defined only in category table TABLE, which defaults to | 101 | The category is defined only in category table TABLE, which defaults to |
| 100 | the current buffer's category table. */) | 102 | the current buffer's category table. */) |
| 101 | (category, docstring, table) | 103 | (category, docstring, table) |