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
5f517806
Commit
5f517806
authored
Sep 07, 1993
by
Roland McGrath
Browse files
({window,frame}-configuration-to-register): Fix prompt string in
interactive spec.
parent
b132f2b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/register.el
lisp/register.el
+2
-2
No files found.
lisp/register.el
View file @
5f517806
...
...
@@ -63,14 +63,14 @@ Argument is a character, naming the register."
"Store the window configuration of the selected frame in register REGISTER.
Use \\[jump-to-register] to restore the configuration.
Argument is a character, naming the register."
(
interactive
"c
Point
to register: \nP"
)
(
interactive
"c
Window configuration
to register: \nP"
)
(
set-register
char
(
current-window-configuration
)))
(
defun
frame-configuration-to-register
(
char
&optional
arg
)
"Store the window configuration of all frames in register REGISTER.
Use \\[jump-to-register] to restore the configuration.
Argument is a character, naming the register."
(
interactive
"c
Point
to register: \nP"
)
(
interactive
"c
Frame configuration
to register: \nP"
)
(
set-register
char
(
current-frame-configuration
)))
(
defalias
'register-to-point
'jump-to-register
)
...
...
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