>>>> "MS" == Michael Sperber
<sperber(a)informatik.uni-tuebingen.de> writes:
MS> Could you cut&paste the definition of `dired-use-ls-dired' code from
MS> Debian's dired.el (i.e. do M-x find-library RET dired RET)? It should
MS> be this:
MS> ;;;###autoload
MS> (defcustom dired-use-ls-dired
MS> (and (string-match "gnu" system-configuration)
MS> ;; Only supported for XEmacs >= 21.5 and GNU Emacs >= 21.4 (I
think)
MS> (or (and (featurep 'xemacs)
MS> (fboundp 'emacs-version>=)
MS> (emacs-version>= 21 5))
MS> (and (boundp 'emacs-major-version)
MS> (boundp 'emacs-minor-version)
MS> (or (> emacs-major-version 21)
MS> (and (= emacs-major-version 21)
MS> (>= emacs-minor-version 4))))))
MS> "Non-nil means Dired should use `ls --dired'."
MS> :type 'boolean
MS> :group 'dired-programs)
Sorry for the delay (vacations) here it comes
(defcustom dired-use-ls-dired
(and (string-match "gnu" system-configuration)
;; Only supported for XEmacs >= 21.5 and GNU Emacs >= 21.4 (I think)
(or (and (featurep 'xemacs)
(fboundp 'emacs-version>=)
(emacs-version>= 21 5))
(and (boundp 'emacs-major-version)
(boundp 'emacs-minor-version)
(or (> emacs-major-version 21)
(and (= emacs-major-version 21)
(>= emacs-minor-version 4))))))
"Non-nil means Dired should use `ls --dired'."
:type 'boolean
:group 'dired-programs)
So the definition seems to be all right
Uwe
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta