aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoam Postavsky2016-08-13 22:54:53 -0400
committerNoam Postavsky2016-08-13 22:56:11 -0400
commit8d681476bd44a2f843030579a5bbf5a248488afb (patch)
treeb07a5b1a0e898f4f56986b6f7ca77687657261e8
parent8342e7481a1553af81ad97518a1b15901c9bd329 (diff)
downloademacs-8d681476bd44a2f843030579a5bbf5a248488afb.tar.gz
emacs-8d681476bd44a2f843030579a5bbf5a248488afb.zip
Document CATEGORY arg to modify-category-entry
* src/category.c (Fmodify_category_entry): Document CATEGORY argument.
-rw-r--r--src/category.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/category.c b/src/category.c
index 4397f662ba9..83157974080 100644
--- a/src/category.c
+++ b/src/category.c
@@ -336,6 +336,8 @@ The category is changed only for table TABLE, which defaults to
336the current buffer's category table. 336the current buffer's category table.
337CHARACTER can be either a single character or a cons representing the 337CHARACTER can be either a single character or a cons representing the
338lower and upper ends of an inclusive character range to modify. 338lower and upper ends of an inclusive character range to modify.
339CATEGORY must be a category name (a character between ` ' and `~').
340Use `describe-categories' to see existing category names.
339If optional fourth argument RESET is non-nil, 341If optional fourth argument RESET is non-nil,
340then delete CATEGORY from the category set instead of adding it. */) 342then delete CATEGORY from the category set instead of adding it. */)
341 (Lisp_Object character, Lisp_Object category, Lisp_Object table, Lisp_Object reset) 343 (Lisp_Object character, Lisp_Object category, Lisp_Object table, Lisp_Object reset)