emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog dired.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog dired.el
Date: Sat, 17 Oct 2009 03:13:55 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/10/17 03:13:54

Modified files:
        lisp           : ChangeLog dired.el 

Log message:
        (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
        (dired-keep-marker-copy, dired-keep-marker-hardlink)
        (dired-keep-marker-symlink, dired-dwim-target)
        (dired-copy-preserve-time): Do not autoload these defcustoms.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16442&r2=1.16443
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/dired.el?cvsroot=emacs&r1=1.435&r2=1.436

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16442
retrieving revision 1.16443
diff -u -b -r1.16442 -r1.16443
--- ChangeLog   17 Oct 2009 03:11:54 -0000      1.16442
+++ ChangeLog   17 Oct 2009 03:13:51 -0000      1.16443
@@ -1,5 +1,10 @@
 2009-10-17  Glenn Morris  <address@hidden>
 
+       * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
+       (dired-keep-marker-copy, dired-keep-marker-hardlink)
+       (dired-keep-marker-symlink, dired-dwim-target)
+       (dired-copy-preserve-time): Do not autoload these defcustoms.
+
        * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
        messages from messing up the file coding.  (Bug#4623)
 

Index: dired.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/dired.el,v
retrieving revision 1.435
retrieving revision 1.436
diff -u -b -r1.435 -r1.436
--- dired.el    11 Oct 2009 03:48:10 -0000      1.435
+++ dired.el    17 Oct 2009 03:13:54 -0000      1.436
@@ -87,7 +87,6 @@
 (defvar dired-touch-program "touch"
   "Name of touch command (usually `touch').")
 
-;;;###autoload
 (defcustom dired-ls-F-marks-symlinks nil
   "Informs Dired about how `ls -lF' marks symbolic links.
 Set this to t if `ls' (or whatever program is specified by
@@ -114,7 +113,6 @@
                 regexp)
   :group 'dired)
 
-;;;###autoload
 (defcustom dired-keep-marker-rename t
   ;; Use t as default so that moved files "take their markers with them".
   "Controls marking of renamed files.
@@ -125,7 +123,6 @@
                 (character :tag "Mark"))
   :group 'dired-mark)
 
-;;;###autoload
 (defcustom dired-keep-marker-copy ?C
   "Controls marking of copied files.
 If t, copied files are marked if and as the corresponding original files were.
@@ -134,7 +131,6 @@
                 (character :tag "Mark"))
   :group 'dired-mark)
 
-;;;###autoload
 (defcustom dired-keep-marker-hardlink ?H
   "Controls marking of newly made hard links.
 If t, they are marked if and as the files linked to were marked.
@@ -143,7 +139,6 @@
                 (character :tag "Mark"))
   :group 'dired-mark)
 
-;;;###autoload
 (defcustom dired-keep-marker-symlink ?Y
   "Controls marking of newly made symbolic links.
 If t, they are marked if and as the files linked to were marked.
@@ -152,7 +147,6 @@
                 (character :tag "Mark"))
   :group 'dired-mark)
 
-;;;###autoload
 (defcustom dired-dwim-target nil
   "If non-nil, Dired tries to guess a default target directory.
 This means: if there is a dired buffer displayed in the next window,
@@ -162,7 +156,6 @@
   :type 'boolean
   :group 'dired)
 
-;;;###autoload
 (defcustom dired-copy-preserve-time t
   "If non-nil, Dired preserves the last-modified time in a file copy.
 \(This works on only some systems.)"




reply via email to

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