summaryrefslogtreecommitdiff
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
commit5f517806dfb7f06d6ad0d97917768db7c7731aed (patch)
tree4863bdbd99b7773d9d4647056d649d19967f4afa
parentb132f2b1ce316fecbf98dc95d9906df346bad134 (diff)
downloademacs-5f517806dfb7f06d6ad0d97917768db7c7731aed.tar.gz
({window,frame}-configuration-to-register): Fix prompt string in
interactive spec.
-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)