Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
fdbd7c4d
Commit
fdbd7c4d
authored
Jan 18, 1998
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(switch-to-completions): If no completions window,
don't try to switch to it.
parent
afc070d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/simple.el
lisp/simple.el
+6
-4
No files found.
lisp/simple.el
View file @
fdbd7c4d
...
...
@@ -3609,10 +3609,12 @@ select the completion near point.\n\n"))
;; Make sure we have a completions window.
(or (get-buffer-window "
*Completions*
")
(minibuffer-completion-help))
(select-window (get-buffer-window "
*Completions*
"))
(goto-char (point-min))
(search-forward "
\n\n
")
(forward-line 1))
(let ((window (get-buffer-window "
*Completions*
")))
(when window
(select-window window)
(goto-char (point-min))
(search-forward "
\n\n
")
(forward-line 1))))
;; Support keyboard commands to turn on various modifiers.
...
...
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