diff options
| author | Artur Malabarba | 2016-02-06 18:45:21 +0000 |
|---|---|---|
| committer | Artur Malabarba | 2016-02-06 22:48:32 +0000 |
| commit | 3db6adb174e4b3aa147fc7b260e5e401cb6069fc (patch) | |
| tree | d4a3d9f7a9ab1fa211652454a9efcb48f482b8cc | |
| parent | 4ea1ea7c73f40a5bb3955273312f337dc332d6aa (diff) | |
| download | emacs-3db6adb174e4b3aa147fc7b260e5e401cb6069fc.tar.gz emacs-3db6adb174e4b3aa147fc7b260e5e401cb6069fc.zip | |
* lisp/isearch.el (search-default-mode)
(isearch-regexp-function): Improve docstrings.
| -rw-r--r-- | lisp/isearch.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 1718096957e..6ef4f72db2f 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -234,9 +234,9 @@ If t, default to regexp searches (as if typing `\\[isearch-toggle-regexp]' durin | |||
| 234 | isearch). | 234 | isearch). |
| 235 | 235 | ||
| 236 | If a function, use that function as an `isearch-regexp-function'. | 236 | If a function, use that function as an `isearch-regexp-function'. |
| 237 | Example functions are `word-search-regexp' \(`\\[isearch-toggle-word]'), | 237 | Example functions (and the keys to toggle them during isearch) |
| 238 | `isearch-symbol-regexp' \(`\\[isearch-toggle-symbol]'), and | 238 | are `word-search-regexp' \(`\\[isearch-toggle-word]'), `isearch-symbol-regexp' |
| 239 | `character-fold-to-regexp' \(`\\[isearch-toggle-character-fold]')." | 239 | \(`\\[isearch-toggle-symbol]'), and `character-fold-to-regexp' \(`\\[isearch-toggle-character-fold]')." |
| 240 | ;; :type is set below by `isearch-define-mode-toggle'. | 240 | ;; :type is set below by `isearch-define-mode-toggle'. |
| 241 | :type '(choice (const :tag "Literal search" nil) | 241 | :type '(choice (const :tag "Literal search" nil) |
| 242 | (const :tag "Regexp search" t) | 242 | (const :tag "Regexp search" t) |
| @@ -558,7 +558,11 @@ If the value is a function (e.g. `isearch-symbol-regexp'), it is | |||
| 558 | called to convert a plain search string to a regexp used by | 558 | called to convert a plain search string to a regexp used by |
| 559 | regexp search functions. | 559 | regexp search functions. |
| 560 | The symbol property `isearch-message-prefix' put on this function | 560 | The symbol property `isearch-message-prefix' put on this function |
| 561 | specifies the prefix string displayed in the search message.") | 561 | specifies the prefix string displayed in the search message. |
| 562 | |||
| 563 | This variable is set and changed during isearch. To change the | ||
| 564 | default behaviour used for searches, see `search-default-mode' | ||
| 565 | instead.") | ||
| 562 | ;; We still support setting this to t for backwards compatibility. | 566 | ;; We still support setting this to t for backwards compatibility. |
| 563 | (define-obsolete-variable-alias 'isearch-word | 567 | (define-obsolete-variable-alias 'isearch-word |
| 564 | 'isearch-regexp-function "25.1") | 568 | 'isearch-regexp-function "25.1") |