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
c1ea301b
Commit
c1ea301b
authored
Sep 12, 1999
by
Gerd Moellmann
Browse files
(iswitchb-exhibit): Use buffer-string instead
of buffer-substring because buffer-string doesn't copy the prompt.
parent
eabac825
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/iswitchb.el
lisp/iswitchb.el
+1
-1
No files found.
lisp/iswitchb.el
View file @
c1ea301b
...
...
@@ -1061,7 +1061,7 @@ Copied from `icomplete-exhibit' with two changes:
2. It calls my completion routine rather than the standard completion."
(
if
iswitchb-use-mycompletion
(
let
((
contents
(
buffer-
sub
string
(
point-min
)(
point-max
)
))
(
let
((
contents
(
buffer-string
))
(
buffer-undo-list
t
))
(
save-excursion
(
goto-char
(
point-max
))
...
...
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