]> git.eshelyaron.com Git - emacs.git/commitdiff
(sgml-name-char): Ask user with a prompt.
authorRichard M. Stallman <rms@gnu.org>
Thu, 17 Apr 1997 21:22:21 +0000 (21:22 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 17 Apr 1997 21:22:21 +0000 (21:22 +0000)
lisp/textmodes/sgml-mode.el

index c9734c2a6c77d4a5e0d9055a17dc1debf8aa894a..5102e87b024a83f507627940294ba36d2ce68df8 100644 (file)
@@ -436,7 +436,7 @@ or M-- for a soft hyphen."
   (interactive "*")
   (insert ?&)
   (or char
-      (setq char (read-quoted-char)))
+      (setq char (read-quoted-char "Enter char or octal number")))
   (delete-backward-char 1)
   (insert char)
   (undo-boundary)