diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-17 21:22:21 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-17 21:22:21 +0000 |
commit | 9b0ffdac4b452ea635dae7ea6e34300981bbd5a0 (patch) | |
tree | 11b6008a1603805ac05d0ba2a3dd764d646373ad /lisp | |
parent | 4d3e4bc8ab1ffa802477ec160b3572c9d67102bd (diff) | |
download | emacs-9b0ffdac4b452ea635dae7ea6e34300981bbd5a0.tar.gz emacs-9b0ffdac4b452ea635dae7ea6e34300981bbd5a0.tar.bz2 emacs-9b0ffdac4b452ea635dae7ea6e34300981bbd5a0.zip |
(sgml-name-char): Ask user with a prompt.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/sgml-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index c9734c2a6c7..5102e87b024 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el @@ -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) |