summaryrefslogtreecommitdiff
path: root/lisp/register.el
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1993-09-07 00:45:56 +0000
committerRoland McGrath <roland@gnu.org>1993-09-07 00:45:56 +0000
commitace46dd13256370cef7968beb7605373da4d36ff (patch)
tree2685f6c0ddd692e1fc2a51aba82a67bb0d5743d3 /lisp/register.el
parent385c0f0b304dfca7a57eabbf6ee5b9c4a5f43437 (diff)
downloademacs-ace46dd13256370cef7968beb7605373da4d36ff.tar.gz
({window,frame}-configuration-to-register): Fix prompt string in
interactive spec.
Diffstat (limited to 'lisp/register.el')
-rw-r--r--lisp/register.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/register.el b/lisp/register.el
index 91ef6c40423..32646112857 100644
--- a/lisp/register.el
+++ b/lisp/register.el
@@ -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 "cPoint to register: \nP")
+ (interactive "cWindow 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 "cPoint to register: \nP")
+ (interactive "cFrame configuration to register: \nP")
(set-register char (current-frame-configuration)))
(defalias 'register-to-point 'jump-to-register)