summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1998-11-06 09:31:52 +0000
committerAndreas Schwab <schwab@suse.de>1998-11-06 09:31:52 +0000
commit7be38f7dba3ae572cf41b4267d9402065889e915 (patch)
tree5016308940c47adcc4bea6aef6b8f820362d429f
parentf35b0e56f0813b693f74c6c5e0101a9b23e0d547 (diff)
downloademacs-7be38f7dba3ae572cf41b4267d9402065889e915.tar.gz
emacs-7be38f7dba3ae572cf41b4267d9402065889e915.tar.bz2
emacs-7be38f7dba3ae572cf41b4267d9402065889e915.zip
(html-mode): Doc fix.
(sgml-name-8bit-mode): Fix missing format character in message string.
-rw-r--r--lisp/textmodes/sgml-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index 6ce8faed903..895e1ca6ca7 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -481,7 +481,7 @@ or M-- for a soft hyphen."
"Toggle insertion of 8 bit characters."
(interactive)
(setq sgml-name-8bit-mode (not sgml-name-8bit-mode))
- (message "sgml name 8 bit mode is now %"
+ (message "sgml name 8 bit mode is now %s"
(if sgml-name-8bit-mode "ON" "OFF")))
@@ -1144,7 +1144,7 @@ This takes effect when first loading the library.")
;;;###autoload
(defun html-mode ()
"Major mode based on SGML mode for editing HTML documents.
-This allows inserting skeleton costructs used in hypertext documents with
+This allows inserting skeleton constructs used in hypertext documents with
completion. See below for an introduction to HTML. Use
\\[browse-url-of-buffer] to see how this comes out. See also `sgml-mode' on
which this is based.