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
bf77ce53
Commit
bf77ce53
authored
May 24, 1993
by
Richard M. Stallman
Browse files
(jump-to-register): Don't fail if frame-configuration-p is unbound.
parent
9daefb36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/register.el
lisp/register.el
+2
-1
No files found.
lisp/register.el
View file @
bf77ce53
...
...
@@ -84,7 +84,8 @@ Argument is a character, naming the register."
(
interactive
"cJump to register: "
)
(
let
((
val
(
get-register
char
)))
(
cond
((
frame-configuration-p
val
)
((
and
(
fboundp
'frame-configuration-p
)
(
frame-configuration-p
val
))
(
set-frame-configuration
val
))
((
window-configuration-p
val
)
(
set-window-configuration
val
))
...
...
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