# HG changeset patch # User Stefan Monnier # Date 1052850916 0 # Node ID c2440710e1c4bed2412b555f7d13524f42f16bb5 # Parent 379cf00d70162cf153982be041e5e1d24822adb7 (describe-variable): Mention permanent local status. diff -r 379cf00d7016 -r c2440710e1c4 lisp/help-fns.el --- a/lisp/help-fns.el Tue May 13 18:30:46 2003 +0000 +++ b/lisp/help-fns.el Tue May 13 18:35:16 2003 +0000 @@ -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 @@ (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)))