changeset 17500:e8d7c7e2acab

(sgml-name-char): Ask user with a prompt.
author Richard M. Stallman <rms@gnu.org>
date Thu, 17 Apr 1997 21:22:21 +0000
parents 77604d2454dc
children 478f9bb8575c
files lisp/textmodes/sgml-mode.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/sgml-mode.el	Thu Apr 17 18:00:12 1997 +0000
+++ b/lisp/textmodes/sgml-mode.el	Thu Apr 17 21:22:21 1997 +0000
@@ -436,7 +436,7 @@
   (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)