[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm adbb65c917 3/4: Align let and fix typo in comment, no
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm adbb65c917 3/4: Align let and fix typo in comment, no code change |
Date: |
Wed, 4 Dec 2024 01:00:03 -0500 (EST) |
branch: elpa/helm
commit adbb65c91789a72563a469934a98437a93b566ba
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Align let and fix typo in comment, no code change
---
helm-lib.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/helm-lib.el b/helm-lib.el
index 39a559768f..80c8cdc296 100644
--- a/helm-lib.el
+++ b/helm-lib.el
@@ -602,16 +602,16 @@ usable in all clauses to refer to EXPR.
(special (or isguard isdst))
(sexp (and isguard (cadr key)))
(dst-sexp (and isdst (cadr key))))
- `(let* ((it ,expr)
+ `(let* ((it ,expr)
(guard ,sexp)
- (dst (and (consp it) ',dst-sexp)))
+ (dst (and (consp it) ',dst-sexp)))
(cond ((or guard
(and ,(not special)
(or (equal it ',key)
(and (listp ',key) (member it ',key))))
(and (symbolp ',key)
(or (eq ',key t) (eq ',key 'otherwise))))
- ;; When this branch is expanded the compiler complain about not
+ ;; When this branch is expanded the compiler complains about
not
;; referenced variables (the ones in `dst' that will be used in
;; next branch) so prevent warnings instead of using a progn
;; Merci Stefan!