]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe-variable): Mention permanent local status.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 13 May 2003 18:35:16 +0000 (18:35 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 13 May 2003 18:35:16 +0000 (18:35 +0000)
lisp/help-fns.el

index 7454f8ea105503d7e94e179307f8ca239650550f..71a5044002d3170f420348b2d02fbb65c7d1c52c 100644 (file)
@@ -1,6 +1,6 @@
 ;;; help-fns.el --- Complex help functions
 
-;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002
+;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2003
 ;;   Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
@@ -410,7 +410,10 @@ it is displayed along with the global value."
                      (delete-region (1- from) from)))))
            (terpri)
            (when (local-variable-p variable)
-             (princ (format "Local in buffer %s; " (buffer-name)))
+             (princ (format "%socal in buffer %s; "
+                            (if (get variable 'permanent-local)
+                                "Permanently l" "L")
+                            (buffer-name)))
              (if (not (default-boundp variable))
                  (princ "globally void")
                (let ((val (default-value variable)))