* lisp/textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
authorLeo Liu <sdl.web@gmail.com>
Sun, 25 Nov 2012 16:07:58 +0000 (00:07 +0800)
committerLeo Liu <sdl.web@gmail.com>
Sun, 25 Nov 2012 16:07:58 +0000 (00:07 +0800)
Fixes: debbugs:12979

lisp/ChangeLog
lisp/textmodes/sgml-mode.el

index f0a4873..9e403af 100644 (file)
@@ -1,3 +1,8 @@
+2012-11-25  Leo Liu  <sdl.web@gmail.com>
+
+       * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
+       (Bug#12979)
+
 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
 
        * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
index 46c65b2..ed03166 100644 (file)
@@ -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")