diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-05-12 17:30:29 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-05-12 17:30:29 +0000 |
commit | 6483b8c7937f3c9c2debc2b749293e2adcac0e63 (patch) | |
tree | a744e7eebd0c9f048c722f331c935a8881897476 /lisp/obsolete | |
parent | f8240abdb871f9e75bf61a6c4eb4864090bd87ad (diff) | |
download | emacs-6483b8c7937f3c9c2debc2b749293e2adcac0e63.tar.gz |
(fast-lock-cache-directories): Remove "." from its
default value and give it the risky-local-variable property.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r-- | lisp/obsolete/fast-lock.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el index 409027bc2d9..21ae1a0403c 100644 --- a/lisp/obsolete/fast-lock.el +++ b/lisp/obsolete/fast-lock.el @@ -286,7 +286,7 @@ for buffers in Rmail mode, and size is irrelevant otherwise." (integer :tag "size"))))) :group 'fast-lock) -(defcustom fast-lock-cache-directories '("." "~/.emacs-flc") +(defcustom fast-lock-cache-directories '("~/.emacs-flc") ; - `internal', keep each file's Font Lock cache file in the same file. ; - `external', keep each file's Font Lock cache file in the same directory. "*Directories in which Font Lock cache files are saved and read. @@ -304,12 +304,15 @@ For example: ((\"^/your/true/home/directory/\" . \".\") \"~/.emacs-flc\") would cause a file's current directory to be used if the file is under your -home directory hierarchy, or otherwise the absolute directory `~/.emacs-flc'." +home directory hierarchy, or otherwise the absolute directory `~/.emacs-flc'. +For security reasons, it is not advisable to use the file's current directory +to avoid the possibility of using the cache of another user." :type '(repeat (radio (directory :tag "directory") (cons :tag "Matching" (regexp :tag "regexp") (directory :tag "directory")))) :group 'fast-lock) +(put 'fast-lock-cache-directories 'risky-local-variable t) (defcustom fast-lock-save-events '(kill-buffer kill-emacs) "*Events under which caches will be saved. |