emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/filecache.el


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/filecache.el
Date: Mon, 13 Dec 2004 15:04:48 -0500

Index: emacs/lisp/filecache.el
diff -c emacs/lisp/filecache.el:1.21 emacs/lisp/filecache.el:1.22
*** emacs/lisp/filecache.el:1.21        Mon Feb 16 13:36:12 2004
--- emacs/lisp/filecache.el     Mon Dec 13 19:43:13 2004
***************
*** 345,357 ****
      (call-process file-cache-find-command nil
                  (get-buffer file-cache-buffer) nil
                  dir "-name"
!                   (cond
!                    (file-cache-find-command-posix-flag
!                     "\\*")
!                    ((eq system-type 'windows-nt)
!                     "'*'")
!                    (t
!                     "*"))
                  "-print")
      (file-cache-add-from-file-cache-buffer)))
  
--- 345,355 ----
      (call-process file-cache-find-command nil
                  (get-buffer file-cache-buffer) nil
                  dir "-name"
!                 (if (memq system-type '(windows-nt cygwin))
!                     (if file-cache-find-command-posix-flag
!                         "\\*"
!                       "'*'")
!                   "*")
                  "-print")
      (file-cache-add-from-file-cache-buffer)))
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]