diff options
| author | Juri Linkov | 2014-01-31 11:41:54 +0200 |
|---|---|---|
| committer | Juri Linkov | 2014-01-31 11:41:54 +0200 |
| commit | bd21bf41c00ea85de7bba7440a4ee70fa934cdb9 (patch) | |
| tree | c77ddae81fdeb304fbbf0f3e2eceddcee337bf18 /doc | |
| parent | 579d49fa6ef7eb66fb6a042251f95d2fa94d2e3b (diff) | |
| download | emacs-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.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/searching.texi | 15 |
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 |
| 238 | This command (@code{left-word}) behaves like @kbd{M-f}, except it | 238 | This command (@code{left-word}) behaves like @kbd{M-b}, except it |
| 239 | moves @emph{forward} by one word if the current paragraph is | 239 | moves @emph{forward} by one word if the current paragraph is |
| 240 | right-to-left. @xref{Bidirectional Editing}. | 240 | right-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 @@ | |||
| 1 | 2014-01-31 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * searching.texi (String Search): Incremental word search fixes. | ||
| 4 | |||
| 1 | 2014-01-28 Glenn Morris <rgm@gnu.org> | 5 | 2014-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 ---------- |
| 143 | He said "Please! Find | 143 | He said "Please! Find |
| @@ -160,16 +160,17 @@ If @var{repeat} is non-@code{nil}, then the search is repeated that many | |||
| 160 | times. Point is positioned at the end of the last match. | 160 | times. Point is positioned at the end of the last match. |
| 161 | 161 | ||
| 162 | @findex word-search-regexp | 162 | @findex word-search-regexp |
| 163 | Internal, @code{word-search-forward} and related functions use the | 163 | Internally, @code{word-search-forward} and related functions use the |
| 164 | function @code{word-search-regexp} to convert @var{string} to a | 164 | function @code{word-search-regexp} to convert @var{string} to a |
| 165 | regular expression that ignores punctuation. | 165 | regular 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 |
| 169 | This command is identical to @code{word-search-forward}, except that | 169 | This command is identical to @code{word-search-forward}, except that |
| 170 | the end of @var{string} need not match a word boundary, unless @var{string} ends | 170 | the beginning or the end of @var{string} need not match a word |
| 171 | in whitespace. For instance, searching for @samp{ball boy} matches | 171 | boundary, unless @var{string} begins or ends in whitespace. |
| 172 | @samp{ball boyee}, but does not match @samp{aball boy}. | 172 | For instance, searching for @samp{ball boy} matches @samp{ball boyee}, |
| 173 | but 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 |
| 183 | This command is identical to @code{word-search-backward}, except that | 184 | This command is identical to @code{word-search-backward}, except that |
| 184 | the end of @var{string} need not match a word boundary, unless @var{string} ends | 185 | the beginning or the end of @var{string} need not match a word |
| 185 | in whitespace. | 186 | boundary, 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 |