diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:30:13 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:32:53 -0800 |
commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/progmodes/vhdl-mode.el | |
parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/progmodes/vhdl-mode.el')
-rw-r--r-- | lisp/progmodes/vhdl-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 16ddcdebc9f..dc5bf203a21 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -8737,13 +8737,13 @@ project is defined." ((/= (preceding-char) ?-) ; standard dash (minus) (self-insert-command count)) (t (self-insert-command count) - (message "Enter '-' for horiz. line, 'CR' for commenting-out code, else enter comment") + (message "Enter `-' for horiz. line, RET for commenting-out code, else enter comment") (let ((next-input (read-char))) (if (= next-input ?-) ; triple dash (progn (vhdl-comment-display-line) (message - "Enter '-' for display comment, else continue coding") + "Enter `-' for display comment, else continue coding") (let ((next-input (read-char))) (if (= next-input ?-) ; four dashes (vhdl-comment-display t) |