* bug#20815: 25.0.50; doc of `null'
@ 2015-06-14 22:20 Drew Adams
2015-06-14 22:31 ` Drew Adams
2015-06-16 19:52 ` Nicolas Petton
0 siblings, 2 replies; 5+ messages in thread
From: Drew Adams @ 2015-06-14 22:20 UTC (permalink / raw)
To: 20815
The doc string should make clear that this is a Boolean
predicate. Currently it says only "Return t if OBJECT is
nil. It should also say "Return nil if OBJECT is non-nil.
The Elisp manual (node `List-related Predicates' (which should
be written `List-Related Predicates') is OK. It says what the
return value is if OBJECT is not nil.
In GNU Emacs 25.0.50.1 (i686-pc-mingw32)
of 2014-10-20 on LEG570
Bzr revision: 118168 rgm@gnu.org-20141020195941-icp42t8ttcnud09g
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
`configure --enable-checking=yes,glyphs CPPFLAGS=-DGLYPH_DEBUG=1'
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#20815: 25.0.50; doc of `null'
2015-06-14 22:20 bug#20815: 25.0.50; doc of `null' Drew Adams
@ 2015-06-14 22:31 ` Drew Adams
2015-06-15 2:37 ` Eli Zaretskii
2015-06-16 19:52 ` Nicolas Petton
1 sibling, 1 reply; 5+ messages in thread
From: Drew Adams @ 2015-06-14 22:31 UTC (permalink / raw)
To: 20815
BTW, the URL for the online manual is not good for this node.
Following the convention, it should be simply
http://www.gnu.org/software/emacs/manual/html_node/elisp/List-related-Predicates.html
But it is instead:
http://www.gnu.org/software/emacs/manual/html_node/elisp/List_002drelated-Predicates.html
Somehow, the hyphen got translated to `_002d', unhelpfully.
It is good to follow a consistent convention. I take advantage
of that, for example, in this command, which I use several times
a day to point Web readers to the manual (e.g. from stackoverflow
and emacs.stackexchange.com):
(defun Info-goto-node-web (node &optional flip-new-win)
"Use `browse-url' to go to Info node NODE using a Web browser.
With a prefix arg, reverse the effect of option
option`browse-url-new-window-flag'.
NODE is the name of a node in the GNU Emacs or Elisp manual.
Alternatively, NODE can have the form (MANUAL)NODE, where MANUAL is
\"emacs\" or \"elisp\" and NODE is the name of the node in that
manual. Empty NODE in (MANUAL) defaults to the `Top' node."
(interactive
(list (Info-read-node-name "Go to node: " Info-current-node)
current-prefix-arg))
(require 'browse-url)
(unless Info-current-file (error "This command must be invoked from Info"))
(browse-url (Info-url-for-node node)
(list (if flip-new-win
(not browse-url-new-window-flag)
browse-url-new-window-flag))))
`Info-url-for-node' returns "a URL for NODE, a node in the GNU
Emacs or Elisp manual." It does this:
(replace-regexp-in-string "[ \t]+" "-" node t t). That doesn't
DTRT for the node reported in this bug report, for example.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#20815: 25.0.50; doc of `null'
2015-06-14 22:20 bug#20815: 25.0.50; doc of `null' Drew Adams
2015-06-14 22:31 ` Drew Adams
@ 2015-06-16 19:52 ` Nicolas Petton
1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Petton @ 2015-06-16 19:52 UTC (permalink / raw)
To: Drew Adams; +Cc: 20815-done, 20815
Drew Adams <drew.adams@oracle.com> writes:
> The doc string should make clear that this is a Boolean
> predicate. Currently it says only "Return t if OBJECT is
> nil. It should also say "Return nil if OBJECT is non-nil.
I pushed a fix (commit deb6e89).
Nico
--
Nicolas Petton
http://nicolas-petton.fr
^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <<d7555608-5067-45bc-865e-5881625a68ac@default>]
end of thread, other threads:[~2015-06-16 19:52 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-14 22:20 bug#20815: 25.0.50; doc of `null' Drew Adams
2015-06-14 22:31 ` Drew Adams
2015-06-15 2:37 ` Eli Zaretskii
2015-06-16 19:52 ` Nicolas Petton
[not found] <<d7555608-5067-45bc-865e-5881625a68ac@default>
[not found] ` <<5bec299c-bc7b-414b-8ea1-77e9ee0fdc91@default>
[not found] ` <<834mm9puho.fsf@gnu.org>
2015-06-15 5:33 ` Drew Adams
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.