aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispintro
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 3ac24183078..5ad5f267857 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -13947,7 +13947,7 @@ What happens is this: the search is limited to the region, and fails
13947as you expect because there are no word-constituent characters in the 13947as you expect because there are no word-constituent characters in the
13948region. Since it fails, we receive an error message. But we do not 13948region. Since it fails, we receive an error message. But we do not
13949want to receive an error message in this case; we want to receive the 13949want to receive an error message in this case; we want to receive the
13950message that "The region does NOT have any words." 13950message ``The region does NOT have any words.''
13951 13951
13952The solution to this problem is to provide @code{re-search-forward} 13952The solution to this problem is to provide @code{re-search-forward}
13953with a third argument of @code{t}, which causes the function to return 13953with a third argument of @code{t}, which causes the function to return