[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/font-lock.el
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/font-lock.el |
Date: |
Tue, 27 Jul 2004 14:49:22 -0400 |
Index: emacs/lisp/font-lock.el
diff -c emacs/lisp/font-lock.el:1.224 emacs/lisp/font-lock.el:1.225
*** emacs/lisp/font-lock.el:1.224 Sat Jul 17 14:30:33 2004
--- emacs/lisp/font-lock.el Tue Jul 27 18:45:41 2004
***************
*** 358,365 ****
(eval . FORM)
where MATCHER can be either the regexp to search for, or the function name to
! call to make the search (called with one argument, the limit of the search)
and
! return non-nil if it succeeds (and set `match-data' appropriately).
MATCHER regexps can be generated via the function `regexp-opt'.
FORM is an expression, whose value should be a keyword element, evaluated when
--- 358,366 ----
(eval . FORM)
where MATCHER can be either the regexp to search for, or the function name to
! call to make the search (called with one argument, the limit of the search;
! it should return non-nil, move point, and set `match-data' appropriately iff
! it succeeds; like `re-search-forward' would).
MATCHER regexps can be generated via the function `regexp-opt'.
FORM is an expression, whose value should be a keyword element, evaluated when