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: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/filecache.el
Date: Fri, 31 Jan 2003 10:16:24 -0500

Index: emacs/lisp/filecache.el
diff -c emacs/lisp/filecache.el:1.14 emacs/lisp/filecache.el:1.15
*** emacs/lisp/filecache.el:1.14        Tue Apr 30 16:42:40 2002
--- emacs/lisp/filecache.el     Fri Jan 31 10:16:23 2003
***************
*** 187,193 ****
    :group 'file-cache)
  
  (defcustom file-cache-completion-ignore-case
!    (if (memq system-type (list 'ms-dos 'windows-nt))
        t
       completion-ignore-case)
    "If non-nil, file-cache completion should ignore case.
--- 187,193 ----
    :group 'file-cache)
  
  (defcustom file-cache-completion-ignore-case
!    (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin))
        t
       completion-ignore-case)
    "If non-nil, file-cache completion should ignore case.
***************
*** 197,203 ****
    )
  
  (defcustom file-cache-case-fold-search
!   (if (memq system-type (list 'ms-dos 'windows-nt))
        t
      case-fold-search)
    "If non-nil, file-cache completion should ignore case.
--- 197,203 ----
    )
  
  (defcustom file-cache-case-fold-search
!   (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin))
        t
      case-fold-search)
    "If non-nil, file-cache completion should ignore case.
***************
*** 207,213 ****
    )
  
  (defcustom file-cache-assoc-function
!   (if (memq system-type (list 'ms-dos 'windows-nt))
        'assoc-ignore-case
      'assoc)
    "Function to use to check completions in the file cache.
--- 207,213 ----
    )
  
  (defcustom file-cache-assoc-function
!   (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin))
        'assoc-ignore-case
      'assoc)
    "Function to use to check completions in the file cache.




reply via email to

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