changeset 4669:e212db4385f9

({window,frame}-configuration-to-register): Fix prompt string in interactive spec.
author Roland McGrath <roland@gnu.org>
date Tue, 07 Sep 1993 00:45:56 +0000
parents 12289fa93455
children e39967101d8b
files lisp/register.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/register.el	Mon Sep 06 22:48:00 1993 +0000
+++ b/lisp/register.el	Tue Sep 07 00:45:56 1993 +0000
@@ -63,14 +63,14 @@
   "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)