GNU bug report logs -
#4387
read-file-name-completion-ignore-case has no effect in find-name-arg
Previous Next
Reported by: Juri Linkov <juri <at> jurta.org>
Date: Thu, 10 Sep 2009 02:05:05 UTC
Severity: normal
Done: Juri Linkov <juri <at> jurta.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
This is an automatic notification regarding your bug report
which was filed against the emacs package:
#4387: read-file-name-completion-ignore-case has no effect in find-name-arg
It has been closed by Juri Linkov <juri <at> jurta.org>.
Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Juri Linkov <juri <at> jurta.org> by
replying to this email.
--
4387: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=4387
Emacs Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
>>> But there is no way to use "-iname" when
>>> `read-file-name-completion-ignore-case' is customized to t because
>>> `find-name-arg' is autoloaded with the value "-name" before
>
> Don't autoload it.
Done according to
http://lists.gnu.org/archive/html/emacs-devel/2009-11/msg00633.html
--
Juri Linkov
http://www.jurta.org/emacs/
[Message part 3 (message/rfc822, inline)]
The docstring of `find-name-arg' says that `read-file-name-completion-ignore-case'
defines its default value:
;;;###autoload
(defcustom find-name-arg
(if read-file-name-completion-ignore-case
"-iname"
"-name")
"Argument used to specify file name pattern.
If `read-file-name-completion-ignore-case' is non-nil, -iname is used so that
find also ignores case. Otherwise, -name is used."
:type 'string
:group 'find-dired
:version "22.2")
But there is no way to use "-iname" when `read-file-name-completion-ignore-case'
is customized to t because `find-name-arg' is autoloaded with the value "-name"
before
(custom-set-variables
'(read-file-name-completion-ignore-case t))
from .emacs sets the value of `read-file-name-completion-ignore-case'.
This also precludes from using -iname in `rgrep' that relies on `find-name-arg'.
--
Juri Linkov
http://www.jurta.org/emacs/
This bug report was last modified 15 years and 269 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.