]> git.eshelyaron.com Git - emacs.git/commitdiff
(read-quoted-char): Turn on help-form and turn off help-char.
authorKarl Heuer <kwzh@gnu.org>
Wed, 7 Jun 1995 20:53:07 +0000 (20:53 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 7 Jun 1995 20:53:07 +0000 (20:53 +0000)
lisp/subr.el

index 93165de8c005f21428afb1d3d19850dfba868886..36c61513864ca63af9565c2b0e3b484c0582b059 100644 (file)
@@ -708,7 +708,11 @@ Optional argument PROMPT specifies a string to use to prompt the user."
   (let ((message-log-max nil) (count 0) (code 0) char)
     (while (< count 3)
       (let ((inhibit-quit (zerop count))
-           (help-form nil))
+           ;; Don't let C-h get the help message--only help function keys.
+           (help-char nil)
+           (help-form
+            "Type the special character you want to use,
+or three octal digits representing its character code."))
        (and prompt (message "%s-" prompt))
        (setq char (read-char))
        (if inhibit-quit (setq quit-flag nil)))