aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispintro
diff options
context:
space:
mode:
authorPaul Eggert2015-09-04 13:31:41 -0700
committerPaul Eggert2015-09-04 13:32:18 -0700
commit8a6260e1e14ab1523c195001454c98aaa044ea64 (patch)
tree36bdb78d5615a54eefc1e6c24af8d57be283883d /doc/lispintro
parent262a23dac0ad6c06197a9e2994dca4b896ac0a58 (diff)
downloademacs-8a6260e1e14ab1523c195001454c98aaa044ea64.tar.gz
emacs-8a6260e1e14ab1523c195001454c98aaa044ea64.zip
Fix minor problems with " in manual
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