Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3157c24a
Commit
3157c24a
authored
Nov 03, 1999
by
Gerd Moellmann
Browse files
(isearch-complete-edit, isearch-ring-advance-edit):
Use erase-field instead of erase-buffer.
parent
5d7791b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/isearch.el
lisp/isearch.el
+2
-2
No files found.
lisp/isearch.el
View file @
3157c24a
...
...
@@ -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))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment