]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/help-fns.el (describe-variable): Add extra line for permanent-local vars.
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 15 Jun 2013 01:12:05 +0000 (03:12 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 15 Jun 2013 01:12:05 +0000 (03:12 +0200)
lisp/ChangeLog
lisp/help-fns.el

index 783cd2d864b226bd4fb172b32a58d03a1522c9e1..f45fbd3f5e007ddd84543c86707b40cd671479b6 100644 (file)
@@ -1,3 +1,8 @@
+2013-06-15  Juanma Barranquero  <lekktu@gmail.com>
+
+       * help-fns.el (describe-variable):
+       Add extra line for permanent-local variables.
+
 2013-06-15  Simen Heggestøyl  <simenheg@ifi.uio.no>  (tiny change)
 
        * progmodes/scheme.el (scheme-font-lock-keywords-2):
index 86bb67e87c2ae9358fa5431e4b5095b8113977bc..52aa0517fa88b4e439ee1e661f81f7a99b0e59c3 100644 (file)
@@ -875,8 +875,10 @@ it is displayed along with the global value."
                (princ "buffer-local when set.\n"))
               ((not permanent-local))
               ((bufferp locus)
+               (setq extra-line t)
                (princ "  This variable's buffer-local value is permanent.\n"))
               (t
+               (setq extra-line t)
                 (princ "  This variable's value is permanent \
 if it is given a local binding.\n")))