comparison lisp/filecache.el @ 111461:2b266010d0b7

system-type related trivia. * lisp/cedet/semantic/bovine/c.el: Test system-type with memq. * lisp/progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags): No recent Emacs supports system-type `emx'. * lisp/progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows. (ada-command-separator, ada-default-prj-properties) (ada-find-any-references): Update for above name change. * lisp/dirtrack.el (dirtrack-directory-function) (dirtrack-canonicalize-function): * lisp/filecache.el (file-cache-completion-ignore-case) (file-cache-case-fold-search, file-cache-ignore-case): * lisp/term.el (serial-port-is-file-p): Cosmetic change. * lisp/emulation/viper-init.el (viper-ms-style-os-p): Doc fix. Remove non-existent `windows-95' system-type. * lisp/dired.el (dired-chown-program): Remove non-existent `linux' system-type. * lisp/locate.el: Comment.
author Glenn Morris <rgm@gnu.org>
date Tue, 09 Nov 2010 20:24:47 -0800
parents 066c6d53b8b9
children 417b1e4d63cd
comparison
equal deleted inserted replaced
111460:ca911a71a6c8 111461:2b266010d0b7
205 "Message to display when there is a non-unique completion." 205 "Message to display when there is a non-unique completion."
206 :type 'string 206 :type 'string
207 :group 'file-cache) 207 :group 'file-cache)
208 208
209 (defcustom file-cache-completion-ignore-case 209 (defcustom file-cache-completion-ignore-case
210 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) 210 (if (memq system-type '(ms-dos windows-nt cygwin))
211 t 211 t
212 completion-ignore-case) 212 completion-ignore-case)
213 "If non-nil, file-cache completion should ignore case. 213 "If non-nil, file-cache completion should ignore case.
214 Defaults to the value of `completion-ignore-case'." 214 Defaults to the value of `completion-ignore-case'."
215 :type 'boolean 215 :type 'boolean
216 :group 'file-cache) 216 :group 'file-cache)
217 217
218 (defcustom file-cache-case-fold-search 218 (defcustom file-cache-case-fold-search
219 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) 219 (if (memq system-type '(ms-dos windows-nt cygwin))
220 t 220 t
221 case-fold-search) 221 case-fold-search)
222 "If non-nil, file-cache completion should ignore case. 222 "If non-nil, file-cache completion should ignore case.
223 Defaults to the value of `case-fold-search'." 223 Defaults to the value of `case-fold-search'."
224 :type 'boolean 224 :type 'boolean
225 :group 'file-cache) 225 :group 'file-cache)
226 226
227 (defcustom file-cache-ignore-case 227 (defcustom file-cache-ignore-case
228 (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) 228 (memq system-type '(ms-dos windows-nt cygwin))
229 "Non-nil means ignore case when checking completions in the file cache. 229 "Non-nil means ignore case when checking completions in the file cache.
230 Defaults to nil on DOS and Windows, and t on other systems." 230 Defaults to nil on DOS and Windows, and t on other systems."
231 :type 'boolean 231 :type 'boolean
232 :group 'file-cache) 232 :group 'file-cache)
233 233
685 ;; Keybindings 685 ;; Keybindings
686 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 686 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
687 687
688 (provide 'filecache) 688 (provide 'filecache)
689 689
690 ;; arch-tag: 433d3ca4-4af2-47ce-b2cf-1f727460f538
691 ;;; filecache.el ends here 690 ;;; filecache.el ends here