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
ddb2b181
Commit
ddb2b181
authored
Jan 09, 1997
by
Richard M. Stallman
Browse files
(delete-completion-window): Handle special display frames.
parent
26eb64a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
lisp/simple.el
lisp/simple.el
+6
-3
No files found.
lisp/simple.el
View file @
ddb2b181
...
...
@@ -2998,9 +2998,12 @@ of the tail end of the buffer's text is involved in completion.")
Go to the window from which completion was requested."
(
interactive
)
(
let
((
buf
completion-reference-buffer
))
(
delete-window
(
selected-window
))
(
if
(
get-buffer-window
buf
)
(
select-window
(
get-buffer-window
buf
)))))
(
if
(
one-window-p
t
)
(
if
(
window-dedicated-p
(
selected-window
))
(
delete-frame
(
selected-frame
)))
(
delete-window
(
selected-window
))
(
if
(
get-buffer-window
buf
)
(
select-window
(
get-buffer-window
buf
))))))
(
defun
previous-completion
(
n
)
"Move to the previous item in the completion list."
...
...
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