aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThien-Thi Nguyen2004-05-19 14:27:21 +0000
committerThien-Thi Nguyen2004-05-19 14:27:21 +0000
commit022cb16265e269894d725c50c6de3e6d19cd5b41 (patch)
tree1204f5873f436ec29f6f9e0f0855b0da98c3f008
parentcfcde636bec28b07aa50eee1e0dcc672b98efdd1 (diff)
downloademacs-022cb16265e269894d725c50c6de3e6d19cd5b41.tar.gz
emacs-022cb16265e269894d725c50c6de3e6d19cd5b41.zip
(Search-based Fontification): Fix typo.
-rw-r--r--lispref/ChangeLog4
-rw-r--r--lispref/modes.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index c46f718b5c7..c2f4f188496 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12004-05-19 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * modes.texi (Search-based Fontification): Fix typo.
4
12004-05-10 Juanma Barranquero <lektu@terra.es> 52004-05-10 Juanma Barranquero <lektu@terra.es>
2 6
3 * modes.texi (Mode Line Variables): Fix description of 7 * modes.texi (Mode Line Variables): Fix description of
diff --git a/lispref/modes.texi b/lispref/modes.texi
index 4a8d83ecfa0..d92ea309ed7 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -2001,7 +2001,7 @@ Find text by calling @var{function}, and highlight the matches
2001it finds using @code{font-lock-keyword-face}. 2001it finds using @code{font-lock-keyword-face}.
2002 2002
2003When @var{function} is called, it receives one argument, the limit of 2003When @var{function} is called, it receives one argument, the limit of
2004the search; it should searching at point, and not search beyond the 2004the search; it should begin searching at point, and not search beyond the
2005limit. It should return non-@code{nil} if it succeeds, and set the 2005limit. It should return non-@code{nil} if it succeeds, and set the
2006match data to describe the match that was found. Returning @code{nil} 2006match data to describe the match that was found. Returning @code{nil}
2007indicates failure of the search. 2007indicates failure of the search.