From: Romain Francoise Date: Wed, 14 Dec 2005 11:21:51 +0000 (+0000) Subject: (Customizing Keywords): Rename `append' to `how'. X-Git-Tag: emacs-pretest-22.0.90~5282 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b158c851d4f79a442b150610af738ff510ce68c5;p=emacs.git (Customizing Keywords): Rename `append' to `how'. Fix typo. --- diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 0e6d0127b4c..072a1f3d32b 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,8 @@ +2005-12-14 Romain Francoise + + * modes.texi (Customizing Keywords): Rename `append' to `how'. + Fix typo. + 2005-12-11 Juri Linkov * minibuf.texi (Completion Commands): Add mention of read-file-name diff --git a/lispref/modes.texi b/lispref/modes.texi index f0513704b1f..6fd23114044 100644 --- a/lispref/modes.texi +++ b/lispref/modes.texi @@ -2638,7 +2638,7 @@ Non-@code{nil} means that regular expression matching for the sake of search-based fontification rules to a major mode, and @code{font-lock-remove-keywords} to removes rules. -@defun font-lock-add-keywords mode keywords &optional append +@defun font-lock-add-keywords mode keywords &optional how This function adds highlighting @var{keywords}, for the current buffer or for major mode @var{mode}. The argument @var{keywords} should be a list with the same format as the variable @code{font-lock-keywords}. @@ -2654,11 +2654,10 @@ If @var{mode} is @code{nil}, this function adds @var{keywords} to @code{font-lock-add-keywords} is usually used in mode hook functions. By default, @var{keywords} are added at the beginning of -@code{font-lock-keywords}. If the optional argument @var{append} is +@code{font-lock-keywords}. If the optional argument @var{how} is @code{set}, they are used to replace the value of -@code{font-lock-keywords}. If @var{append} is any other -non-@code{nil} value, they are added at the end of -@code{font-lock-keywords}. +@code{font-lock-keywords}. If @var{how} is any other non-@code{nil} +value, they are added at the end of @code{font-lock-keywords}. Some modes provide specialized support you can use in additional highlighting patterns. See the variables @@ -2677,7 +2676,7 @@ rules for search-based fontification by setting This function removes @var{keywords} from @code{font-lock-keywords} for the current buffer or for major mode @var{mode}. As in @code{font-lock-add-keywords}, @var{mode} should be a major mode -command name or @code{nil}. All the caveats and requirments for +command name or @code{nil}. All the caveats and requirements for @code{font-lock-add-keywords} apply here too. @end defun