diff options
| author | Philip Kaludercic | 2025-06-09 13:09:53 +0200 |
|---|---|---|
| committer | Philip Kaludercic | 2025-06-09 13:10:13 +0200 |
| commit | 00a30a752ecdf927f532ccf504d52392ef9d98da (patch) | |
| tree | c88fcbbc9cfc97925f7d6e846539cab33dc9f9f4 | |
| parent | 7f6244364b73f0200704708babf6d22367898912 (diff) | |
| download | emacs-00a30a752ecdf927f532ccf504d52392ef9d98da.tar.gz emacs-00a30a752ecdf927f532ccf504d52392ef9d98da.zip | |
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'.
| -rw-r--r-- | lisp/net/rcirc.el | 4 |
1 files 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: | |||
| 302 | (string :tag "Password")) | 302 | (string :tag "Password")) |
| 303 | (list :tag "CertFP" | 303 | (list :tag "CertFP" |
| 304 | (const certfp) | 304 | (const certfp) |
| 305 | (string :tag "Key") | 305 | (file :tag "Key" :must-match t) |
| 306 | (string :tag "Certificate"))))) | 306 | (file :tag "Certificate" :must-match t))))) |
| 307 | 307 | ||
| 308 | (defcustom rcirc-auto-authenticate-flag t | 308 | (defcustom rcirc-auto-authenticate-flag t |
| 309 | "Non-nil means automatically send authentication string to server. | 309 | "Non-nil means automatically send authentication string to server. |