From: Amin Bandali Date: Sun, 4 Jul 2021 05:18:19 +0000 (-0400) Subject: Update a few more IRC-related references to point to Libera.Chat X-Git-Tag: emacs-28.0.90~1967 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7a13ddfda0b52d17d845ad390faa3c16005ef453;p=emacs.git Update a few more IRC-related references to point to Libera.Chat --- diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi index cc54ca3f54d..10ced678e1d 100644 --- a/doc/misc/erc.texi +++ b/doc/misc/erc.texi @@ -554,7 +554,7 @@ for the values of the other parameters, and @code{client-certificate} will be @code{nil}. @example -(erc-tls :server "chat.freenode.net" :full-name "J. Random Hacker") +(erc-tls :server "irc.libera.chat" :full-name "J. Random Hacker") @end example To use a certificate with @code{erc-tls}, specify the optional @@ -572,21 +572,21 @@ various IRC networks. Examples of use: @example -(erc-tls :server "chat.freenode.net" :port 6697 +(erc-tls :server "irc.libera.chat" :port 6697 :client-certificate '("/home/bandali/my-cert.key" "/home/bandali/my-cert.crt")) @end example @example -(erc-tls :server "chat.freenode.net" :port 6697 +(erc-tls :server "irc.libera.chat" :port 6697 :client-certificate - `(,(expand-file-name "~/cert-freenode.key") - ,(expand-file-name "~/cert-freenode.crt"))) + `(,(expand-file-name "~/cert-libera.key") + ,(expand-file-name "~/cert-libera.crt"))) @end example @example -(erc-tls :server "chat.freenode.net" :port 6697 +(erc-tls :server "irc.libera.chat" :port 6697 :client-certificate t) @end example @@ -595,7 +595,7 @@ line like the following to your authinfo file (e.g. @file{~/.authinfo.gpg}): @example -machine chat.freenode.net key /home/bandali/my-cert.key cert /home/bandali/my-cert.crt +machine irc.libera.chat key /home/bandali/my-cert.key cert /home/bandali/my-cert.crt @end example @xref{Help for users,,,auth, Emacs auth-source Library}, for more on the diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index 7d8d97632f4..026c6f84164 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -2260,7 +2260,7 @@ Non-interactively, it takes the keyword arguments That is, if called with - (erc-tls :server \"chat.freenode.net\" :full-name \"J. Random Hacker\") + (erc-tls :server \"irc.libera.chat\" :full-name \"J. Random Hacker\") then the server and full-name will be set to those values, whereas `erc-compute-port' and `erc-compute-nick' will be invoked @@ -2276,7 +2276,7 @@ authentication by various IRC networks. Example usage: - (erc-tls :server \"chat.freenode.net\" :port 6697 + (erc-tls :server \"irc.libera.chat\" :port 6697 :client-certificate '(\"/home/bandali/my-cert.key\" \"/home/bandali/my-cert.crt\"))" diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 89154ae8957..efaf061f31f 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -10888,7 +10888,7 @@ Non-interactively, it takes the keyword arguments That is, if called with - (erc :server \"chat.freenode.net\" :full-name \"J. Random Hacker\") + (erc :server \"irc.libera.chat\" :full-name \"J. Random Hacker\") then the server and full-name will be set to those values, whereas `erc-compute-port' and `erc-compute-nick' will be invoked @@ -10915,7 +10915,7 @@ Non-interactively, it takes the keyword arguments That is, if called with - (erc-tls :server \"chat.freenode.net\" :full-name \"J. Random Hacker\") + (erc-tls :server \"irc.libera.chat\" :full-name \"J. Random Hacker\") then the server and full-name will be set to those values, whereas `erc-compute-port' and `erc-compute-nick' will be invoked @@ -10931,7 +10931,7 @@ authentication by various IRC networks. Example usage: - (erc-tls :server \"chat.freenode.net\" :port 6697 + (erc-tls :server \"irc.libera.chat\" :port 6697 :client-certificate '(\"/home/bandali/my-cert.key\" \"/home/bandali/my-cert.crt\")) diff --git a/lisp/progmodes/bug-reference.el b/lisp/progmodes/bug-reference.el index f1ec5224c77..e502cbb3dc0 100644 --- a/lisp/progmodes/bug-reference.el +++ b/lisp/progmodes/bug-reference.el @@ -362,7 +362,7 @@ From, and Cc against HEADER-REGEXP in (defvar bug-reference-setup-from-irc-alist `((,(concat "#" (regexp-opt '("emacs" "gnus" "org-mode" "rcirc" "erc") 'words)) - "freenode" + "Libera.Chat" "\\([Bb]ug ?#?\\)\\([0-9]+\\(?:#[0-9]+\\)?\\)" "https://debbugs.gnu.org/%s")) "An alist for setting up `bug-reference-mode' in IRC modes. @@ -377,8 +377,8 @@ Each element has the form CHANNEL-REGEXP is a regexp matched against the current IRC channel name (e.g. #emacs). NETWORK-REGEXP is matched against -the IRC network name (e.g. freenode). Both entries are optional. -If all given entries match, BUG-REGEXP is set as +the IRC network name (e.g. Libera.Chat). Both entries are +optional. If all given entries match, BUG-REGEXP is set as `bug-reference-bug-regexp' and URL-FORMAT is set as `bug-reference-url-format'.")