comparison lisp/dired.el @ 105939:a0f778f4a995

* term/x-win.el (x-gtk-stock-map): * progmodes/vera-mode.el (auto-mode-alist): * progmodes/inf-lisp.el (inferior-lisp-filter-regexp) (inferior-lisp-program, inferior-lisp-load-command): * progmodes/hideshow.el (hs-special-modes-alist): * progmodes/gud.el (same-window-regexps): * progmodes/grep.el (grep-program, find-program, xargs-program): * net/telnet.el (same-window-regexps): * net/rlogin.el (same-window-regexps): * language/ethiopic.el (font-ccl-encoder-alist): * vc-sccs.el (vc-sccs-master-templates): * vc-rcs.el (vc-rcs-master-templates): * subr.el (cl-assertion-failed): * simple.el (next-error-overlay-arrow-position): * lpr.el (lpr-command): * locate.el (locate-ls-subdir-switches): * info.el (same-window-regexps, info) (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node): * image-mode.el (image-mode, auto-mode-alist): * hippie-exp.el (hippie-expand-ignore-buffers): * format.el (format-alist): * find-dired.el (find-ls-subdir-switches, find-grep-options) (find-name-arg): * facemenu.el (facemenu-keybindings): * dired.el (dired-listing-switches, dired-chown-program): * diff.el (diff-switches, diff-command): * cus-edit.el (same-window-regexps): * bindings.el (mode-line-mule-info) (mode-line-buffer-identification): Purecopy strings.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 11 Nov 2009 05:49:09 +0000
parents 8f110099da5c
children 25e1d7e37015
comparison
equal deleted inserted replaced
105938:788a43a6e3c8 105939:a0f778f4a995
48 :prefix "dired-" 48 :prefix "dired-"
49 :group 'dired) 49 :group 'dired)
50 50
51 51
52 ;;;###autoload 52 ;;;###autoload
53 (defcustom dired-listing-switches "-al" 53 (defcustom dired-listing-switches (purecopy "-al")
54 "Switches passed to `ls' for Dired. MUST contain the `l' option. 54 "Switches passed to `ls' for Dired. MUST contain the `l' option.
55 May contain all other options that don't contradict `-l'; 55 May contain all other options that don't contradict `-l';
56 may contain even `F', `b', `i' and `s'. See also the variable 56 may contain even `F', `b', `i' and `s'. See also the variable
57 `dired-ls-F-marks-symlinks' concerning the `F' switch. 57 `dired-ls-F-marks-symlinks' concerning the `F' switch.
58 On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp, 58 On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp,
69 ; may prefer /usr/local/gnu/bin or whatever. However, chown is 69 ; may prefer /usr/local/gnu/bin or whatever. However, chown is
70 ; usually not in PATH. 70 ; usually not in PATH.
71 71
72 ;;;###autoload 72 ;;;###autoload
73 (defvar dired-chown-program 73 (defvar dired-chown-program
74 (purecopy
74 (if (memq system-type '(hpux usg-unix-v irix linux gnu/linux cygwin)) 75 (if (memq system-type '(hpux usg-unix-v irix linux gnu/linux cygwin))
75 "chown" 76 "chown"
76 (if (file-exists-p "/usr/sbin/chown") 77 (if (file-exists-p "/usr/sbin/chown")
77 "/usr/sbin/chown" 78 "/usr/sbin/chown"
78 "/etc/chown")) 79 "/etc/chown")))
79 "Name of chown command (usually `chown' or `/etc/chown').") 80 "Name of chown command (usually `chown' or `/etc/chown').")
80 81
81 (defvar dired-use-ls-dired (not (not (string-match "gnu" system-configuration))) 82 (defvar dired-use-ls-dired (not (not (string-match "gnu" system-configuration)))
82 "Non-nil means Dired should use `ls --dired'.") 83 "Non-nil means Dired should use `ls --dired'.")
83 84