help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: complete file at point in buffer - solution and questions


From: Dirk80
Subject: Re: complete file at point in buffer - solution and questions
Date: Wed, 19 May 2010 04:30:56 -0700 (PDT)



> 3.) In unix the file system is case sensitive. In windows OS the file
> system is not case sensitive. But my function is always case sensitive.
> How can I say that when emacs is running in windows that case does not
> matter. I think that I have to say to the C-Source functions
> "file-name-completion" and "file-name-all-completions" that they should be
> not case sensitive when emacs is running in windows. But I do not know how
> to do it.
> 

For this problem I found the solution:

(let ((completion-ignore-case (memq system-type '(ms-dos windows-nt
cygwin))))
...)
-- 
View this message in context: 
http://old.nabble.com/complete-file-at-point-in-buffer---solution-and-questions-tp28599706p28606928.html
Sent from the Emacs - Help mailing list archive at Nabble.com.




reply via email to

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