all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* GNU Emacs 24.1.50.1 show stopper bug: find-dired
@ 2012-04-29  2:54 Xah Lee
  2012-04-29  5:31 ` Yuri Khan
       [not found] ` <mailman.260.1335677519.855.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 4+ messages in thread
From: Xah Lee @ 2012-04-29  2:54 UTC (permalink / raw)
  To: help-gnu-emacs

GNU Emacs 24.1.50.1 show stopper bug: find-dired

this seems to be a showstopper bug.

• start emacs 「runemacs.exe -Q」
• 【M-x find-dired】
• 「-name "*html"」
• expected result: list of files in dired.

Here's what i got:
--------------------------------------------
  c:/Users/h3/web/xahlee_org/comp/:
  find . "(" -name "*html" ")" -exec ls -ld {} ";"
  Access denied - .
  File not found - -NAME

  ---------- AMPERSAND_HTML_ENTITIES_UNICODE_SEMANTICS.HTML
  …
  ---------- APPLE_IPAD_CENSORSHIP.HTML
  …
  ---------- ASPELL_SPELL_CHECKING.HTML
  …
  ---------- ASPELL_VOCABULARY.HTML
  …
  ---------- BLOG.HTML
  …
  ---------- YOUR_REGEX_BRAIN.HTML
  …


  File not found - )
  File not found - -EXEC
  File not found - LS
  File not found - -LD
  File not found - {}
  File not found - ;

  find finished at Sat Apr 28 19:46:27
--------------------------------------------

each of the 「…」 is about n lines of file content. The n can be 4 to 10
or more. Not sure what's the pattern.

Also, my file names are mostly lowercase. Don't know why it is CAPS
there.

GNU Emacs 24.1.50.1 (i386-mingw-nt6.1.7601) of 2012-04-23 on MARVIN
ErgoEmacs distribution 1.9.4

Windows 7.

 Xah


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: GNU Emacs 24.1.50.1 show stopper bug: find-dired
  2012-04-29  2:54 GNU Emacs 24.1.50.1 show stopper bug: find-dired Xah Lee
@ 2012-04-29  5:31 ` Yuri Khan
       [not found] ` <mailman.260.1335677519.855.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 4+ messages in thread
From: Yuri Khan @ 2012-04-29  5:31 UTC (permalink / raw)
  Cc: help-gnu-emacs

On Sun, Apr 29, 2012 at 09:54, Xah Lee <xahlee@gmail.com> wrote:

> Here's what i got:
> --------------------------------------------
>  c:/Users/h3/web/xahlee_org/comp/:
>  find . "(" -name "*html" ")" -exec ls -ld {} ";"
>  Access denied - .
>  File not found - -NAME
>
>  ---------- AMPERSAND_HTML_ENTITIES_UNICODE_SEMANTICS.HTML
>  …
> Windows 7.

The output format (including all caps) suggests that the Windows
find.exe is invoked, instead of POSIX find. The Windows find.exe is
functionally analogous to grep -F, i.e. find a literal string in
files.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: GNU Emacs 24.1.50.1 show stopper bug: find-dired
       [not found] ` <mailman.260.1335677519.855.help-gnu-emacs@gnu.org>
@ 2012-04-29  8:41   ` Xah Lee
  2012-04-29  8:51   ` Xah Lee
  1 sibling, 0 replies; 4+ messages in thread
From: Xah Lee @ 2012-04-29  8:41 UTC (permalink / raw)
  To: help-gnu-emacs

On Apr 28, 10:31 pm, Yuri Khan <yurivk...@gmail.com> wrote:
> On Sun, Apr 29, 2012 at 09:54, Xah Lee <xah...@gmail.com> wrote:
> > Here's what i got:
> > --------------------------------------------
> >  c:/Users/h3/web/xahlee_org/comp/:
> >  find . "(" -name "*html" ")" -exec ls -ld {} ";"
> >  Access denied - .
> >  File not found - -NAME
>
> >  ---------- AMPERSAND_HTML_ENTITIES_UNICODE_SEMANTICS.HTML
> >  …
> > Windows 7.
>
> The output format (including all caps) suggests that the Windows
> find.exe is invoked, instead of POSIX find. The Windows find.exe is
> functionally analogous to grep -F, i.e. find a literal string in
> files.

Darn. You are right. Same thing happened with emacs 23 -Q.

Thanks a lot Yuri, and for many helpful comments on my site.

 Xah


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: GNU Emacs 24.1.50.1 show stopper bug: find-dired
       [not found] ` <mailman.260.1335677519.855.help-gnu-emacs@gnu.org>
  2012-04-29  8:41   ` Xah Lee
@ 2012-04-29  8:51   ` Xah Lee
  1 sibling, 0 replies; 4+ messages in thread
From: Xah Lee @ 2012-04-29  8:51 UTC (permalink / raw)
  To: help-gnu-emacs

On Apr 28, 10:31 pm, Yuri Khan <yurivk...@gmail.com> wrote:
> On Sun, Apr 29, 2012 at 09:54, Xah Lee <xah...@gmail.com> wrote:
> > Here's what i got:
> > --------------------------------------------
> >  c:/Users/h3/web/xahlee_org/comp/:
> >  find . "(" -name "*html" ")" -exec ls -ld {} ";"
> >  Access denied - .
> >  File not found - -NAME
>
> >  ---------- AMPERSAND_HTML_ENTITIES_UNICODE_SEMANTICS.HTML
> >  …
> > Windows 7.
>
> The output format (including all caps) suggests that the Windows
> find.exe is invoked, instead of POSIX find. The Windows find.exe is
> functionally analogous to grep -F, i.e. find a literal string in
> files.

Hi Yuri and all, thanks for the info as my earlier reply.

although there's some problem here i think may be related to this...
I'll post a separate thread.

 Xah


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-04-29  8:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-29  2:54 GNU Emacs 24.1.50.1 show stopper bug: find-dired Xah Lee
2012-04-29  5:31 ` Yuri Khan
     [not found] ` <mailman.260.1335677519.855.help-gnu-emacs@gnu.org>
2012-04-29  8:41   ` Xah Lee
2012-04-29  8:51   ` Xah Lee

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.