changeset 80949:7a27a4cd50b4

(sgml-tag): Fix bug: Call sgml-transformation-function.
author Thien-Thi Nguyen <ttn@gnuvola.org>
date Thu, 17 May 2007 13:31:51 +0000
parents 3f6e1170212a
children d958dcaefe08
files lisp/textmodes/sgml-mode.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/sgml-mode.el	Thu May 17 08:42:29 2007 +0000
+++ b/lisp/textmodes/sgml-mode.el	Thu May 17 13:31:51 2007 +0000
@@ -619,10 +619,10 @@
   "Prompt for a tag and insert it, optionally with attributes.
 Completion and configuration are done according to `sgml-tag-alist'.
 If you like tags and attributes in uppercase do \\[set-variable]
-`skeleton-transformation-function' RET `upcase' RET, or put this
+`sgml-transformation-function' RET `upcase' RET, or put this
 in your `.emacs':
   (setq sgml-transformation-function 'upcase)"
-  (funcall (or skeleton-transformation-function 'identity)
+  (funcall (or sgml-transformation-function 'identity)
            (setq sgml-tag-last
 		 (completing-read
 		  (if (> (length sgml-tag-last) 0)