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

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

bug#4387: marked as done (read-file-name-completion-ignore-case has no e


From: Emacs bug Tracking System
Subject: bug#4387: marked as done (read-file-name-completion-ignore-case has no effect in find-name-arg)
Date: Thu, 19 Nov 2009 17:55:12 +0000

Your message dated Thu, 19 Nov 2009 19:45:14 +0200
with message-id <87skca9zuu.fsf@mail.jurta.org>
and subject line Re: bug#4387: read-file-name-completion-ignore-case has no 
effect in find-name-arg
has caused the Emacs bug report #4387,
regarding read-file-name-completion-ignore-case has no effect in find-name-arg
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@emacsbugs.donarmstrong.com
immediately.)


-- 
4387: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=4387
Emacs Bug Tracking System
Contact owner@emacsbugs.donarmstrong.com with problems
--- Begin Message --- Subject: read-file-name-completion-ignore-case has no effect in find-name-arg Date: Thu, 10 Sep 2009 04:12:28 +0300 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (x86_64-pc-linux-gnu)
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/



--- End Message ---
--- Begin Message --- Subject: Re: bug#4387: read-file-name-completion-ignore-case has no effect in find-name-arg Date: Thu, 19 Nov 2009 19:45:14 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (x86_64-pc-linux-gnu)
>>> 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/

--- End Message ---

reply via email to

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