]> git.eshelyaron.com Git - emacs.git/commitdiff
* 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 f0a487370d37633462bb59ef6fb865ed81759d79..9e403af64169cbe1ac30f8521b7f4172f64d2642 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 46c65b25b37826aa86c0f79284a70e438b0308d1..ed031664246151d4c0ff8d50f4eb0618f9e56b63 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")