aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Williams2002-05-14 09:51:03 +0000
committerMike Williams2002-05-14 09:51:03 +0000
commit51df53f840effe95be3c4ca1210a87fec1aafd53 (patch)
tree3be15ec79334978830edf81e1624d7be9cfa01ed
parent6ba0fd3eb934e5063db7621cb052339abfdb278b (diff)
downloademacs-51df53f840effe95be3c4ca1210a87fec1aafd53.tar.gz
emacs-51df53f840effe95be3c4ca1210a87fec1aafd53.zip
(sgml-tag): Default skeleton-transformation to `identity'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/sgml-mode.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f2431e938d5..d0b24524d26 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-05-14 Mike Williams <mdub@bigfoot.com>
2
3 * textmodes/sgml-mode.el (sgml-tag): Default
4 skeleton-transformation to `identity'.
5
12002-05-14 Francesco Potorti` <pot@gnu.org> 62002-05-14 Francesco Potorti` <pot@gnu.org>
2 7
3 * shell.el (shell-mode): Make second part of initialisation 8 * shell.el (shell-mode): Make second part of initialisation
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index b7b2eecfe64..58aec14b48b 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -571,8 +571,8 @@ Completion and configuration are done according to `sgml-tag-alist'.
571If you like tags and attributes in uppercase do \\[set-variable] 571If you like tags and attributes in uppercase do \\[set-variable]
572skeleton-transformation RET upcase RET, or put this in your `.emacs': 572skeleton-transformation RET upcase RET, or put this in your `.emacs':
573 (setq sgml-transformation 'upcase)" 573 (setq sgml-transformation 'upcase)"
574 (funcall skeleton-transformation 574 (funcall (or skeleton-transformation 'identity)
575 (completing-read "Tag: " sgml-tag-alist)) 575 (completing-read "Tag: " sgml-tag-alist))
576 ?< str | 576 ?< str |
577 (("") -1 '(undo-boundary) (identity "&lt;")) | ; see comment above 577 (("") -1 '(undo-boundary) (identity "&lt;")) | ; see comment above
578 `(("") '(setq v2 (sgml-attributes ,str t)) ?> 578 `(("") '(setq v2 (sgml-attributes ,str t)) ?>