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
dd4d27ca
Commit
dd4d27ca
authored
Mar 22, 1996
by
Richard M. Stallman
Browse files
(switch-to-lisp): Sometimes turn on pop-up-frames.
parent
29db528b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lisp/progmodes/inf-lisp.el
lisp/progmodes/inf-lisp.el
+6
-1
No files found.
lisp/progmodes/inf-lisp.el
View file @
dd4d27ca
...
@@ -361,7 +361,12 @@ Prefix argument means switch to the Lisp buffer afterwards."
...
@@ -361,7 +361,12 @@ Prefix argument means switch to the Lisp buffer afterwards."
With argument, positions cursor at end of buffer."
With argument, positions cursor at end of buffer."
(
interactive
"P"
)
(
interactive
"P"
)
(
if
(
get-buffer
inferior-lisp-buffer
)
(
if
(
get-buffer
inferior-lisp-buffer
)
(
pop-to-buffer
inferior-lisp-buffer
)
(
let
((
pop-up-frames
;; Be willing to use another frame
;; that already has the window in it.
(
or
pop-up-frames
(
get-buffer-window
inferior-lisp-buffer
t
))))
(
pop-to-buffer
inferior-lisp-buffer
))
(
error
"No current inferior Lisp buffer"
))
(
error
"No current inferior Lisp buffer"
))
(
cond
(
eob-p
(
cond
(
eob-p
(
push-mark
)
(
push-mark
)
...
...
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