aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJuri Linkov2014-01-31 11:41:54 +0200
committerJuri Linkov2014-01-31 11:41:54 +0200
commitbd21bf41c00ea85de7bba7440a4ee70fa934cdb9 (patch)
treec77ddae81fdeb304fbbf0f3e2eceddcee337bf18 /doc
parent579d49fa6ef7eb66fb6a042251f95d2fa94d2e3b (diff)
downloademacs-bd21bf41c00ea85de7bba7440a4ee70fa934cdb9.tar.gz
emacs-bd21bf41c00ea85de7bba7440a4ee70fa934cdb9.zip
Misc small fixes.
* doc/lispref/searching.texi (String Search): Incremental word search fixes. * lisp/sort.el (delete-duplicate-lines): Remove `:weakness 'key' from `make-hash-table'. * lisp/textmodes/ispell.el (ispell-init-process): Change message format to be consistent with other messages.
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/basic.texi2
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/searching.texi15
3 files changed, 13 insertions, 8 deletions
diff --git a/doc/emacs/basic.texi b/doc/emacs/basic.texi
index 3e0d50255b2..27a8ba9438e 100644
--- a/doc/emacs/basic.texi
+++ b/doc/emacs/basic.texi
@@ -235,7 +235,7 @@ Move backward one word (@code{backward-word}).
235@kindex C-LEFT 235@kindex C-LEFT
236@kindex M-LEFT 236@kindex M-LEFT
237@findex left-word 237@findex left-word
238This command (@code{left-word}) behaves like @kbd{M-f}, except it 238This command (@code{left-word}) behaves like @kbd{M-b}, except it
239moves @emph{forward} by one word if the current paragraph is 239moves @emph{forward} by one word if the current paragraph is
240right-to-left. @xref{Bidirectional Editing}. 240right-to-left. @xref{Bidirectional Editing}.
241 241
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 78d7531f869..b38256a4492 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12014-01-31 Juri Linkov <juri@jurta.org>
2
3 * searching.texi (String Search): Incremental word search fixes.
4
12014-01-28 Glenn Morris <rgm@gnu.org> 52014-01-28 Glenn Morris <rgm@gnu.org>
2 6
3 * text.texi (Indent Tabs): Update related to tab-stops. 7 * text.texi (Indent Tabs): Update related to tab-stops.
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
index 623261f3049..2f287cc9705 100644
--- a/doc/lispref/searching.texi
+++ b/doc/lispref/searching.texi
@@ -137,7 +137,7 @@ the ball boy!"
137 137
138@group 138@group
139(word-search-forward "Please find the ball, boy.") 139(word-search-forward "Please find the ball, boy.")
140 @result{} 36 140 @result{} 39
141 141
142---------- Buffer: foo ---------- 142---------- Buffer: foo ----------
143He said "Please! Find 143He said "Please! Find
@@ -160,16 +160,17 @@ If @var{repeat} is non-@code{nil}, then the search is repeated that many
160times. Point is positioned at the end of the last match. 160times. Point is positioned at the end of the last match.
161 161
162@findex word-search-regexp 162@findex word-search-regexp
163Internal, @code{word-search-forward} and related functions use the 163Internally, @code{word-search-forward} and related functions use the
164function @code{word-search-regexp} to convert @var{string} to a 164function @code{word-search-regexp} to convert @var{string} to a
165regular expression that ignores punctuation. 165regular expression that ignores punctuation.
166@end deffn 166@end deffn
167 167
168@deffn Command word-search-forward-lax string &optional limit noerror repeat 168@deffn Command word-search-forward-lax string &optional limit noerror repeat
169This command is identical to @code{word-search-forward}, except that 169This command is identical to @code{word-search-forward}, except that
170the end of @var{string} need not match a word boundary, unless @var{string} ends 170the beginning or the end of @var{string} need not match a word
171in whitespace. For instance, searching for @samp{ball boy} matches 171boundary, unless @var{string} begins or ends in whitespace.
172@samp{ball boyee}, but does not match @samp{aball boy}. 172For instance, searching for @samp{ball boy} matches @samp{ball boyee},
173but does not match @samp{balls boy}.
173@end deffn 174@end deffn
174 175
175@deffn Command word-search-backward string &optional limit noerror repeat 176@deffn Command word-search-backward string &optional limit noerror repeat
@@ -181,8 +182,8 @@ beginning of the match.
181 182
182@deffn Command word-search-backward-lax string &optional limit noerror repeat 183@deffn Command word-search-backward-lax string &optional limit noerror repeat
183This command is identical to @code{word-search-backward}, except that 184This command is identical to @code{word-search-backward}, except that
184the end of @var{string} need not match a word boundary, unless @var{string} ends 185the beginning or the end of @var{string} need not match a word
185in whitespace. 186boundary, unless @var{string} begins or ends in whitespace.
186@end deffn 187@end deffn
187 188
188@node Searching and Case 189@node Searching and Case