# HG changeset patch # User Roland McGrath # Date 747362756 0 # Node ID e212db4385f9f9ca7eacfb5545b17a83dcdb4940 # Parent 12289fa9345522f9b0c567dcc8647929c0ffdbaf ({window,frame}-configuration-to-register): Fix prompt string in interactive spec. diff -r 12289fa93455 -r e212db4385f9 lisp/register.el --- 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)