diff options
| -rw-r--r-- | lisp/isearch.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 9333b7ca9a2..8f93bbfcab7 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -1324,7 +1324,7 @@ With prefix arg N, insert the Nth element." (mod (- (or yank-pointer 0) n) length))) - (erase-buffer) + (erase-field) (insert (nth yank-pointer ring)) (goto-char (point-max))))) @@ -1393,7 +1393,7 @@ If there is no completion possible, say so and continue searching." (setq isearch-string (buffer-string)) (if (isearch-complete1) (progn - (erase-buffer) + (erase-field) (insert isearch-string)))) |
