summaryrefslogtreecommitdiff
path: root/helm-lib.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2016-03-13 20:23:23 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2016-03-13 20:23:23 +0100
commit6b6957d94ebc106aaf32f3a787d3abbe549f3565 (patch)
tree0514a32610f3777493ffa6502e611ebc47561cb8 /helm-lib.el
parentcd34612f91972e14e7d42440c024cb6653be0cce (diff)
Fix helm-aif docstring.
Diffstat (limited to 'helm-lib.el')
-rw-r--r--helm-lib.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/helm-lib.el b/helm-lib.el
index efa605f2..864b58db 100644
--- a/helm-lib.el
+++ b/helm-lib.el
@@ -112,7 +112,8 @@ If NAME returns nil the pair is skipped.
collect (cons name (cadr i))))
(defmacro helm-aif (test-form then-form &rest else-forms)
- "Like `if' but set the result of TEST-FORM in a temprary variable called `it'.
+ "Anaphoric version of `if'.
+Like `if' but set the result of TEST-FORM in a temporary variable called `it'.
THEN-FORM and ELSE-FORMS are then excuted just like in `if'."
(declare (indent 2) (debug t))
`(let ((it ,test-form))