]> git.eshelyaron.com Git - emacs.git/commitdiff
({window,frame}-configuration-to-register): Fix prompt string in
authorRoland McGrath <roland@gnu.org>
Tue, 7 Sep 1993 00:45:56 +0000 (00:45 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 7 Sep 1993 00:45:56 +0000 (00:45 +0000)
interactive spec.

lisp/register.el

index 91ef6c404236157d8ca266a4e05b34f933a3e71a..3264611285705f39e37dccf980b95784ebec0e87 100644 (file)
@@ -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)