GNU bug report logs -
#15047
24.3.50; doc string of `find-listp-find-files' etc.
Previous Next
Reported by: Drew Adams <drew.adams <at> oracle.com>
Date: Wed, 7 Aug 2013 22:08:01 UTC
Severity: minor
Tags: fixed
Found in version 24.3.50
Fixed in version 26.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 15047 in the body.
You can then email your comments to 15047 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15047
; Package
emacs
.
(Wed, 07 Aug 2013 22:08:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Drew Adams <drew.adams <at> oracle.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Wed, 07 Aug 2013 22:08:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
The doc should distinguish between the files _within_ a directory, i.e.,
descending into its subdirectories recursively, and the files in a
directory, i.e., not including in descendent directories.
Pick any terminology you like, but please make it clear.
1. `find-listp-find-files': The doc of does not at all indicate that it
in fact searches also subdirectories, recursively.
2. `find-lisp-find-files-internal': The doc says that
"DIRECTORY-PREDICATE is used to decide...", but it does not say how,
which is central to the meaning of DIRECTORY-PREDICATE. Just say that
if DIRECTORY-PREDICATE returns non-nil then descend into subdirs etc.
3. `find-lisp-find-dired-internal': The doc says "Run find...".
Please change this to "Run `find'...".
4. `find-lisp-find-dired-filter': Please replace the doc string with
something correct or useful. The command does not "change the
filter..." or anything of the kind. And please wrap function names with
`...' in doc.
5. `find-lisp-format': Add a doc string. You "lifted" this from
ls-lisp.el, but you neglected to lift the doc string along with it.
6. `find-lisp-time-index', `find-lisp-format-time': Replace the code
comments with doc strings. This is the 21st century; we can afford
the extra cost. ;-)
7. `find-lisp-find-dired-insert-file': Add a doc string.
In GNU Emacs 24.3.50.1 (i686-pc-mingw32)
of 2013-08-02 on ODIEONE
Bzr revision: 113660 lekktu <at> gmail.com-20130802160313-rbi3o6322mz0m3ye
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
`configure --prefix=/c/Devel/emacs/binary --enable-checking=yes,glyphs
CFLAGS=-O0 -g3 LDFLAGS=-Lc:/Devel/emacs/lib
CPPFLAGS=-Ic:/Devel/emacs/include'
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15047
; Package
emacs
.
(Fri, 29 Apr 2016 13:37:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 15047 <at> debbugs.gnu.org (full text, mbox):
Drew Adams <drew.adams <at> oracle.com> writes:
> The doc should distinguish between the files _within_ a directory, i.e.,
> descending into its subdirectories recursively, and the files in a
> directory, i.e., not including in descendent directories.
>
> Pick any terminology you like, but please make it clear.
>
> 1. `find-listp-find-files': The doc of does not at all indicate that it
> in fact searches also subdirectories, recursively.
Fixed...
> 2. `find-lisp-find-files-internal': The doc says that
> "DIRECTORY-PREDICATE is used to decide...", but it does not say how,
> which is central to the meaning of DIRECTORY-PREDICATE. Just say that
> if DIRECTORY-PREDICATE returns non-nil then descend into subdirs etc.
It's a predicate. That's what predicates do.
> 3. `find-lisp-find-dired-internal': The doc says "Run find...".
> Please change this to "Run `find'...".
But it doesn't run the command `find'. And it says:
"Run find (Lisp version) and go into Dired mode on a buffer of the output."
> 4. `find-lisp-find-dired-filter': Please replace the doc string with
> something correct or useful. The command does not "change the
> filter..." or anything of the kind. And please wrap function names with
> `...' in doc.
But it does change the filter...
;;;###autoload
(defun find-lisp-find-dired-filter (regexp)
"Change the filter on a `find-lisp-find-dired' buffer to REGEXP."
(interactive "sSet filter to regexp: ")
(setq find-lisp-regexp regexp)
(revert-buffer))
And I see that Juanma has already fixed the quoting...
> 5. `find-lisp-format': Add a doc string. You "lifted" this from
> ls-lisp.el, but you neglected to lift the doc string along with it.
Done.
> 6. `find-lisp-time-index', `find-lisp-format-time': Replace the code
> comments with doc strings. This is the 21st century; we can afford
> the extra cost. ;-)
Done.
> 7. `find-lisp-find-dired-insert-file': Add a doc string.
Seems unnecessary.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
Added tag(s) fixed.
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Fri, 29 Apr 2016 13:37:03 GMT)
Full text and
rfc822 format available.
bug marked as fixed in version 25.2, send any further explanations to
15047 <at> debbugs.gnu.org and Drew Adams <drew.adams <at> oracle.com>
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Fri, 29 Apr 2016 13:37:03 GMT)
Full text and
rfc822 format available.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15047
; Package
emacs
.
(Fri, 29 Apr 2016 17:21:01 GMT)
Full text and
rfc822 format available.
Message #15 received at 15047 <at> debbugs.gnu.org (full text, mbox):
> > The doc should distinguish between the files _within_ a directory, i.e.,
> > descending into its subdirectories recursively, and the files in a
> > directory, i.e., not including in descendent directories.
> >
> > Pick any terminology you like, but please make it clear.
> >
> > 1. `find-listp-find-files': The doc of does not at all indicate that it
> > in fact searches also subdirectories, recursively.
>
> Fixed...
>
> > 2. `find-lisp-find-files-internal': The doc says that
> > "DIRECTORY-PREDICATE is used to decide...", but it does not say how,
> > which is central to the meaning of DIRECTORY-PREDICATE. Just say that
> > if DIRECTORY-PREDICATE returns non-nil then descend into subdirs etc.
>
> It's a predicate. That's what predicates do.
Have you looked at this doc and function?
I had no complaint with what the doc string says about arg
FILE-PREDICATE. It says that it is a predicate that files
under DIRECTORY need to satisfy, for them to be found.
Things are very different for DIRECTORY-PREDICATE. What is
it? What is it applied to? If you look at the code you will
see that it is applied to a directory, and if it succeeds
the function is called recursively to look for files under
that directory.
That should be explained in the doc: what the predicate is
applied to and what its effect is.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15047
; Package
emacs
.
(Sun, 01 May 2016 13:47:02 GMT)
Full text and
rfc822 format available.
Message #18 received at 15047 <at> debbugs.gnu.org (full text, mbox):
Drew Adams <drew.adams <at> oracle.com> writes:
> > It's a predicate. That's what predicates do.
>
> Have you looked at this doc and function?
>
> I had no complaint with what the doc string says about arg
> FILE-PREDICATE. It says that it is a predicate that files
> under DIRECTORY need to satisfy, for them to be found.
>
> Things are very different for DIRECTORY-PREDICATE. What is
> it? What is it applied to? If you look at the code you will
> see that it is applied to a directory, and if it succeeds
> the function is called recursively to look for files under
> that directory.
>
> That should be explained in the doc: what the predicate is
> applied to and what its effect is.
The doc says:
"DIRECTORY-PREDICATE is used to decide whether to descend into
directories. It is a function which takes two arguments, the directory
and its parent."
I think with this wording its obvious what DIRECTORY-PREDICATE it is
applied to.
I also think the word "whether" suggests how the boolean return value is
interpreted: descent when the predicate returns non-nil (aka "yes").
We could say that explicitly, sure, but I think it's worth it...
Michael.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15047
; Package
emacs
.
(Sun, 01 May 2016 14:29:02 GMT)
Full text and
rfc822 format available.
Message #21 received at 15047 <at> debbugs.gnu.org (full text, mbox):
> "DIRECTORY-PREDICATE is used to decide whether to descend into
> directories. It is a function which takes two arguments, the directory
> and its parent."
>
> I think with this wording its obvious what DIRECTORY-PREDICATE it is
> applied to.
OK.
> I also think the word "whether" suggests how the boolean return value is
> interpreted: descent when the predicate returns non-nil (aka "yes").
> We could say that explicitly, sure, but I think it's worth it...
"Whether" does not imply that non-nil (aka "yes") means descend.
It can just as easily mean do not descend. Yes, it's a predicate,
and yes, whether to descend is decided based on the return value.
But which return value means descend? "Whether" tells you no
more than "predicate" or "if".
Admittedly, this is not very important. Still, if we are going
to spend time and energy talking about this, we might as well
make it right.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15047
; Package
emacs
.
(Sun, 01 May 2016 15:13:02 GMT)
Full text and
rfc822 format available.
Message #24 received at 15047 <at> debbugs.gnu.org (full text, mbox):
> Date: Sun, 1 May 2016 06:28:04 -0800 (GMT-08:00)
> From: Drew Adams <drew.adams <at> oracle.com>
> Cc: Lars Ingebrigtsen <larsi <at> gnus.org>, 15047 <at> debbugs.gnu.org
>
> > "DIRECTORY-PREDICATE is used to decide whether to descend into
> > directories. It is a function which takes two arguments, the directory
> > and its parent."
> >
> > I think with this wording its obvious what DIRECTORY-PREDICATE it is
> > applied to.
>
> OK.
>
> > I also think the word "whether" suggests how the boolean return value is
> > interpreted: descent when the predicate returns non-nil (aka "yes").
> > We could say that explicitly, sure, but I think it's worth it...
>
> "Whether" does not imply that non-nil (aka "yes") means descend.
I think you are the only one who could ever imagine such a meaning of
that sentence.
> Admittedly, this is not very important. Still, if we are going
> to spend time and energy talking about this, we might as well
> make it right.
Or we might stop wasting time splitting hair.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 30 May 2016 11:24:04 GMT)
Full text and
rfc822 format available.
bug unarchived.
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Sun, 04 Dec 2016 02:50:04 GMT)
Full text and
rfc822 format available.
bug Marked as fixed in versions 26.1.
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Sun, 04 Dec 2016 02:50:04 GMT)
Full text and
rfc822 format available.
bug No longer marked as fixed in versions 25.2.
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Sun, 04 Dec 2016 02:50:04 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 01 Jan 2017 12:24:16 GMT)
Full text and
rfc822 format available.
This bug report was last modified 8 years and 175 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.