diff options
author | Leo Liu <sdl.web@gmail.com> | 2012-11-26 00:07:58 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2012-11-26 00:07:58 +0800 |
commit | 9ad7950682da214673bfea09d9242eb5b538073a (patch) | |
tree | 749568132eb753b1f2d18b9c5b2fbf3a9b55cbdd /lisp/textmodes/sgml-mode.el | |
parent | cf5b88801b26c4ba0f5b9f0d5c1eea535a8dbb5a (diff) | |
download | emacs-9ad7950682da214673bfea09d9242eb5b538073a.tar.gz |
* lisp/textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
Fixes: debbugs:12979
Diffstat (limited to 'lisp/textmodes/sgml-mode.el')
-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 46c65b25b37..ed031664246 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el @@ -671,13 +671,13 @@ in your `.emacs': (if (eq v2 t) (setq v2 nil)) ;; We use `identity' to prevent skeleton from passing ;; `str' through `skeleton-transformation-function' a second time. - '(("") v2 _ v2 "</" (identity ',str) ?>)) + '(("") v2 _ v2 "</" (identity ',str) ?> >)) ((eq (car v2) t) (cons '("") (cdr v2))) (t (append '(("") (car v2)) (cdr v2) - '(resume: (car v2) _ "</" (identity ',str) ?>)))))) + '(resume: (car v2) _ "</" (identity ',str) ?> >)))))) (autoload 'skeleton-read "skeleton") |