# HG changeset patch # User Thien-Thi Nguyen # Date 1179408711 0 # Node ID 7a27a4cd50b484051703c5518f2c8ce6df6b5cee # Parent 3f6e1170212a00d844b9eac82dd470d4c0d69004 (sgml-tag): Fix bug: Call sgml-transformation-function. diff -r 3f6e1170212a -r 7a27a4cd50b4 lisp/textmodes/sgml-mode.el --- 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)