From 00a30a752ecdf927f532ccf504d52392ef9d98da Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Mon, 9 Jun 2025 13:09:53 +0200 Subject: [PATCH] Require CertFP files for rcirc to exist * lisp/net/rcirc.el (rcirc-authinfo): Adjust the types for the key and certificate file from 'string' to 'file'. --- lisp/net/rcirc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index 3f81672182b..291cf39ab1c 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -302,8 +302,8 @@ Examples: (string :tag "Password")) (list :tag "CertFP" (const certfp) - (string :tag "Key") - (string :tag "Certificate"))))) + (file :tag "Key" :must-match t) + (file :tag "Certificate" :must-match t))))) (defcustom rcirc-auto-authenticate-flag t "Non-nil means automatically send authentication string to server.