diff options
Diffstat (limited to 'lisp/isearch.el')
| -rw-r--r-- | lisp/isearch.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 5b5b2f0561a..b677e89c7cd 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -274,8 +274,6 @@ It is nil if none yet.") | |||
| 274 | Default value, nil, means edit the string instead." | 274 | Default value, nil, means edit the string instead." |
| 275 | :type 'boolean) | 275 | :type 'boolean) |
| 276 | 276 | ||
| 277 | (autoload 'char-fold-to-regexp "char-fold") | ||
| 278 | |||
| 279 | (defcustom search-default-mode nil | 277 | (defcustom search-default-mode nil |
| 280 | "Default mode to use when starting isearch. | 278 | "Default mode to use when starting isearch. |
| 281 | Value is nil, t, or a function. | 279 | Value is nil, t, or a function. |
| @@ -2827,7 +2825,6 @@ With argument, add COUNT copies of the character." | |||
| 2827 | (mapconcat 'isearch-text-char-description | 2825 | (mapconcat 'isearch-text-char-description |
| 2828 | string "")))))))) | 2826 | string "")))))))) |
| 2829 | 2827 | ||
| 2830 | (autoload 'emoji--read-emoji "emoji") | ||
| 2831 | (defun isearch-emoji-by-name (&optional count) | 2828 | (defun isearch-emoji-by-name (&optional count) |
| 2832 | "Read an Emoji name and add it to the search string COUNT times. | 2829 | "Read an Emoji name and add it to the search string COUNT times. |
| 2833 | COUNT (interactively, the prefix argument) defaults to 1. | 2830 | COUNT (interactively, the prefix argument) defaults to 1. |
| @@ -2835,6 +2832,7 @@ The command accepts Unicode names like \"smiling face\" or | |||
| 2835 | \"heart with arrow\", and completion is available." | 2832 | \"heart with arrow\", and completion is available." |
| 2836 | (interactive "p") | 2833 | (interactive "p") |
| 2837 | (emoji--init) | 2834 | (emoji--init) |
| 2835 | (declare-function emoji--read-emoji "emoji" ()) | ||
| 2838 | (with-isearch-suspended | 2836 | (with-isearch-suspended |
| 2839 | (pcase-let* ((`(,glyph . ,derived) (emoji--read-emoji)) | 2837 | (pcase-let* ((`(,glyph . ,derived) (emoji--read-emoji)) |
| 2840 | (emoji (if derived | 2838 | (emoji (if derived |