diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-05-17 13:33:12 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-05-17 13:33:12 +0000 |
commit | 992aa6b715846133621bf2d6861b86fda807be95 (patch) | |
tree | b6aed599e9f7b48cd7f16562a78e6e41907b885c /lisp/textmodes | |
parent | 10e3e762bf0c91e3dbbbbc18a72c7e4a57ea118b (diff) | |
download | emacs-992aa6b715846133621bf2d6861b86fda807be95.tar.gz |
(sgml-tag): Fix bug: Call sgml-transformation-function.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/sgml-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index 51ff5e48a34..e8beed036c2 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el @@ -619,10 +619,10 @@ This only works for Latin-1 input." "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) |