summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorF. Jason Park <jp@neverwas.me>2024-06-10 21:56:02 -0700
committerF. Jason Park <jp@neverwas.me>2024-06-12 12:26:01 -0700
commitbbac7b9fa398254e64e5ee3e8aca2f59adcfda50 (patch)
treeadd7e13ac18fdb69f81907d9f4f35e3076af9da1
parente00af96c0691b749932756e47f48a53f5e92a00f (diff)
; Amend some doc strings in ERC
* lisp/erc/erc-backend.el (define-erc-response-handler): Mention important distinction between aliases for handlers and hooks, and note expected type for the latter. * lisp/erc/erc.el (erc--define-channel-user-status-compat-getter): Mention that these accessors are not inlined like those generated by `cl-defstruct'.
-rw-r--r--lisp/erc/erc-backend.el4
-rw-r--r--lisp/erc/erc.el9
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
index e2b7c0b6f48..a4a78c66b02 100644
--- a/lisp/erc/erc-backend.el
+++ b/lisp/erc/erc-backend.el
@@ -1649,6 +1649,10 @@ Would expand to:
See also `erc-server-311'.\"))
+ Note that while all ALIASES share the same handler function, each gets
+ its own distinct hook variable. The default value of these variables
+ may be a list or a function. Robust code should handle both.
+
\(fn (NAME &rest ALIASES) &optional EXTRA-FN-DOC EXTRA-VAR-DOC &rest FN-BODY)"
(declare (debug (&define [&name "erc-response-handler@"
;; No `def-edebug-elem-spec' in 27.
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 025bfbc0a5f..b728dd59fa3 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -676,10 +676,11 @@ Also remove members from the server table if this was their only buffer."
(erc-remove-channel-users)))
(defmacro erc--define-channel-user-status-compat-getter (name c d)
- "Define a gv getter for historical `erc-channel-user' status slot NAME.
-Expect NAME to be a string, C to be its traditionally associated
-letter, and D to be its fallback power-of-2 integer for non-ERC
-buffers."
+ "Define accessor with gv getter for historical `erc-channel-user' slot NAME.
+Expect NAME to be a string, C to be its traditionally associated letter,
+and D to be its fallback power-of-2 integer for non-ERC buffers. Unlike
+pre-ERC-5.6 accessors, do not bother generating a compiler macro for
+inlining calls to these adapters."
`(defun ,(intern (concat "erc-channel-user-" name)) (u)
,(format "Get equivalent of pre-5.6 `%s' slot for `erc-channel-user'."
name)