resolved

Michael Sperber sperber at informatik.uni-tuebingen.de
Thu Dec 21 05:30:40 EST 2006


Uwe Brauer <oub at mat.ucm.es> writes:

>>>>>> "Michael" == Michael Sperber
>>>>>> <sperber at informatik.uni-tuebingen.de> writes: 
>
>    Michael> Probably.  What's the value of `dired-use-ls-dired' on your system?
>    Michael> (It should be nil.)
>
> That is odd, on the old 21.4.18 it is nil but here in the 21.4.19 it
> is t! So I set it to nil and everything is fine!!!!

Could you cut&paste the definition of `dired-use-ls-dired' code from
Debian's dired.el (i.e. do M-x find-library RET dired RET)?  It should
be this:

;;;###autoload
(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)

-- 
Cheers =8-} Mike
Friede, Völkerverständigung und überhaupt blabla




More information about the XEmacs-Beta mailing list