Variable: dired-keep-marker-copy
dired-keep-marker-copy is a customizable variable defined in
dired.el.gz.
Value
67
Documentation
Controls marking of copied files.
If t, copied files are marked if and as the corresponding original files were. If a character, copied files are unconditionally marked with that character.
Source Code
;; Defined in /usr/src/emacs/lisp/dired.el.gz
(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.
If a character, copied files are unconditionally marked with that character."
:type '(choice (const :tag "Keep" t)
(character :tag "Mark"))
:group 'dired-mark)