From: Eli Zaretskii <eliz@gnu.org>
To: Mekeor Melire <mekeor@posteo.de>
Cc: 67615@debbugs.gnu.org
Subject: bug#67615: [PATCH v4] * lisp/info.el (Info-url-alist): New option mapping manuals to URLs.
Date: Sat, 23 Dec 2023 12:05:05 +0200 [thread overview]
Message-ID: <83bkahdyjy.fsf@gnu.org> (raw)
In-Reply-To: <878r5pzsxy.fsf@posteo.de> (message from Mekeor Melire on Tue, 19 Dec 2023 23:08:29 +0000)
> From: Mekeor Melire <mekeor@posteo.de>
> Cc: Eli Zaretskii <eliz@gnu.org>
> Date: Tue, 19 Dec 2023 23:08:29 +0000
>
> Secondly, I'd like to re-share the same version of the patch from my
> last e-mail. Perhaps it was forgotten, perhaps because I did not choose
> a new subject line.
It wasn't forgotten, but thanks anyway.
I have a few minor comments to this version:
> +(defcustom Info-url-alist
> + '((("auth" "autotype" "bovine" "calc" "ccmode" "cl" "dbus" "dired-x"
> + "ebrowse" "ede" "ediff" "edt" "efaq" "efaq-w32" "eglot" "eieio"
> + "eintr" "elisp" "emacs" "emacs-gnutls" "emacs-mime" "epa" "erc"
> + "ert" "eshell" "eudc" "eww" "flymake" "forms" "gnus"
> + "htmlfontify" "idlwave" "ido" "info" "mairix-el" "message"
> + "mh-e" "modus-themes" "newsticker" "nxml-mode" "octave-mode"
> + "org" "pcl-cvs" "pgg" "rcirc" "reftex" "remember" "sasl" "sc"
> + "semantic" "ses" "sieve" "smtpmail" "speedbar" "srecode"
> + "todo-mode" "tramp" "transient" "url" "use-package" "vhdl-mode"
> + "vip" "viper" "vtable" "widget" "wisent" "woman") .
> + "https://www.gnu.org/software/emacs/manual/html_node/%m/%e"))
> + "Alist telling `Info-mode' where manuals are accessible online.
> +
> +Each element of this list should have the form (MANUALs
> +. URL-SPEC). MANUALS represents the name of one or more manuals.
Please reformat/refill this so that "(MANUALs . URL-SPEC)" is not
broken between two lines.
> + (if-let* ((manual (match-string 1 node))
> + (node (match-string 2 node))
> + (association (seq-find
> + (lambda (pair)
> + (seq-contains (ensure-list (car pair))
^^^^^^^^^^^^^
This triggers a byte-compiler warning:
In Info-url-for-node:
info.el:1868:32: Warning: `seq-contains' is an obsolete function (as of 27.1); use `seq-contains-p' instead.
> + (error "No URL-specification associated with manual-name `%s'")))
And this line triggers the following byte-compiler warning:
info.el:1896:6: Warning: `error' called with 0 args to fill 1 format field(s)
next prev parent reply other threads:[~2023-12-23 10:05 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-04 0:04 bug#67615: [PATCH] * lisp/info.el (Info-url-for-node): Support all Emacs info manuals Mekeor Melire
2023-12-04 0:30 ` Mekeor Melire
2023-12-04 10:02 ` bug#67615: [PATCH v2] " Mekeor Melire
2023-12-04 15:51 ` Mekeor Melire
2023-12-04 16:24 ` Eli Zaretskii
2023-12-05 1:06 ` bug#67615: Org-Mode story on how I gathered the list of Emacs-contained online-manuals Mekeor Melire
2023-12-07 2:48 ` bug#67615: [PATCH v2] * lisp/info.el (Info-url-for-node): Support all Emacs info manuals Richard Stallman
2023-12-07 7:19 ` Eli Zaretskii
2023-12-07 11:56 ` Mekeor Melire
2023-12-07 17:02 ` Eli Zaretskii
2023-12-09 4:05 ` Richard Stallman
2023-12-08 0:15 ` bug#67615: [PATCH v3] * lisp/info.el (Info-url-alist): New option mapping manuals to URLs Mekeor Melire
2023-12-09 9:42 ` Eli Zaretskii
2023-12-09 11:21 ` Mekeor Melire
2023-12-19 23:08 ` bug#67615: [PATCH v4] " Mekeor Melire
2023-12-23 10:05 ` Eli Zaretskii [this message]
2024-01-08 21:56 ` bug#67615: [PATCH v5] " Mekeor Melire
2024-01-13 9:51 ` Eli Zaretskii
2024-01-20 0:50 ` bug#67615: [PATCH v6] Add option Info-url-alist Mekeor Melire
2024-01-20 1:41 ` Orhan Kemal Yüksel
2024-01-20 7:23 ` Eli Zaretskii
2024-01-21 1:43 ` bug#67615: [PATCH v7] " Mekeor Melire
2024-01-27 10:21 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=83bkahdyjy.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=67615@debbugs.gnu.org \
--cc=mekeor@posteo.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).