summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-10-19 22:20:35 +0200
committerJonas Bernoulli <jonas@bernoul.li>2025-10-19 22:20:35 +0200
commit09ebf1caa81c99677ce74091a23b48a28d53bcd9 (patch)
tree91fda86b5c524f47c5f1f608ff2688050c3b318c
parent63a9eb219a7010e32cc08096f25ae0bdb7f25927 (diff)
Fix typo in debug declaration
Closes #1.
-rw-r--r--cond-let.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cond-let.el b/cond-let.el
index 72974e2..1f46dec 100644
--- a/cond-let.el
+++ b/cond-let.el
@@ -194,7 +194,7 @@ remaining clauses and binding vectors. Evaluate all VALUEFORMs before
binding their respective SYMBOLs. Unlike for the previous form, bind
all SYMBOLs, even if a VALUEFORM yields nil. Always proceed to the
next clause."
- (declare (indent 0) (debug cond-let))
+ (declare (indent 0) (debug cond-let*))
(let ((tag (gensym ":cond-let")))
`(catch ',tag
,@(cond-let--prepare-clauses tag nil clauses))))