From 5f517806dfb7f06d6ad0d97917768db7c7731aed Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 7 Sep 1993 00:45:56 +0000 Subject: [PATCH] ({window,frame}-configuration-to-register): Fix prompt string in interactive spec. --- lisp/register.el | 4 ++-- 1 file 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) -- 2.39.5