emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/recentf.el


From: David Ponce
Subject: [Emacs-diffs] Changes to emacs/lisp/recentf.el
Date: Thu, 15 Sep 2005 04:01:32 -0400

Index: emacs/lisp/recentf.el
diff -c emacs/lisp/recentf.el:1.44 emacs/lisp/recentf.el:1.45
*** emacs/lisp/recentf.el:1.44  Thu Sep  8 18:45:38 2005
--- emacs/lisp/recentf.el       Thu Sep 15 08:01:31 2005
***************
*** 74,79 ****
--- 74,88 ----
    :group 'recentf
    :type 'file)
  
+ (defcustom recentf-save-file-modes 384 ;; 0600
+   "Mode bits of recentf save file, as an integer, or nil.
+ If non-nil, after writing `recentf-save-file', set its mode bits to
+ this value.  By default give R/W access only to the user who owns that
+ file.  See also the function `set-file-modes'."
+   :group 'recentf
+   :type '(choice (const :tag "Don't change" nil)
+           integer))
+   
  (defcustom recentf-exclude nil
    "*List of regexps and predicates for filenames excluded from the recent 
list.
  When a filename matches any of the regexps or satisfies any of the
***************
*** 257,263 ****
  If it returns nil, the filename is left unchanged."
    :group 'recentf
    :type '(choice (const :tag "None" nil)
!                (const abbreviate-file-name)
                   function))
  
  (defcustom recentf-show-file-shortcuts-flag t
--- 266,272 ----
  If it returns nil, the filename is left unchanged."
    :group 'recentf
    :type '(choice (const :tag "None" nil)
!                  (const abbreviate-file-name)
                   function))
  
  (defcustom recentf-show-file-shortcuts-flag t
***************
*** 1206,1211 ****
--- 1215,1222 ----
                  (format ";;; coding: %s\n" recentf-save-file-coding-system)
                  ";;; End:\n")
          (write-file (expand-file-name recentf-save-file))
+         (when recentf-save-file-modes
+           (set-file-modes recentf-save-file recentf-save-file-modes))
          nil)
      (error
       (warn "recentf mode: %s" (error-message-string error)))))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]