[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#508: emacs 22.2.1 becomes confused
From: |
Stefan Monnier |
Subject: |
bug#508: emacs 22.2.1 becomes confused |
Date: |
Thu, 03 Jul 2008 00:54:57 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) |
> There could be a new defvar (or defconst), like this:
> (defvar case-insensitive-systems-alist
> '(ms-dos windows-nt cygwin darwin macos vax-vms axp-vms)
> "List of systems who have case insensitive filesystems.")
Actually, it should not be a variable but a function (and even
a file-name operation, obeying file-name-handlers):
(directory-case-sensitive-p FILE)
-- Stefan