diff options
author | Andreas Schwab <schwab@suse.de> | 2002-06-30 14:42:19 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2002-06-30 14:42:19 +0000 |
commit | 525fdbc9c89cde92736181df532d0ec2a7f2e558 (patch) | |
tree | aa8e7a0ce87feba3d92a15b75807438ad44cff24 /lisp/term | |
parent | 7e30f58e10c7437d63cb8773ab813a78a5d2dd70 (diff) | |
download | emacs-525fdbc9c89cde92736181df532d0ec2a7f2e558.tar.gz |
* files.el (directory-free-space-args): Don't use -P on Darwin.
* term/mac-win.el: Don't set it here.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/mac-win.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el index 2465126dbd6..a9ac12f085e 100644 --- a/lisp/term/mac-win.el +++ b/lisp/term/mac-win.el @@ -104,10 +104,7 @@ ;; Don't have this yet. (fset 'x-get-resource 'ignore) -(if (eq system-type 'darwin) - ;; df on Darwin does not understand -P - (setq directory-free-space-args "-k") - +(unless (eq system-type 'darwin) ;; This variable specifies the Unix program to call (as a process) to ;; deteremine the amount of free space on a file system (defaults to ;; df). If it is not set to nil, ls-lisp will not work correctly |