summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Manheimer <ken.manheimer@gmail.com>2020-07-06 13:19:11 -0400
committerKen Manheimer <ken.manheimer@gmail.com>2020-07-20 14:29:36 -0400
commit2035ecca578f3cbcc96c314e16e21be51ddea98d (patch)
tree8e777437f182dd1c3d38486326e2c28e3ea20a73
parent3071cecda070b0a4808eeca8009a5dc088606ec6 (diff)
downloademacs-2035ecca578f3cbcc96c314e16e21be51ddea98d.tar.gz
Backport: Provide missing let definition to prevent background void-variable error.
* lisp/allout-widgets.el (allout-widgets-exposure-change-processor) Let-declare handled-conceal, for reference through `(symbol-value)' within the let body. (Because the error happens in an after-change-functions hook, so it is caught and reported as a message by allout-widgets-hook-error-handler.) (cherry picked from commit 3c410b6b4753e02269bb36914e7534eb124150dd)
-rw-r--r--lisp/allout-widgets.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/allout-widgets.el b/lisp/allout-widgets.el
index e7750b3606e..64f2ba500d9 100644
--- a/lisp/allout-widgets.el
+++ b/lisp/allout-widgets.el
@@ -988,6 +988,7 @@ Generally invoked via `allout-exposure-change-functions'."
;; have to distinguish between concealing and exposing so that, eg,
;; `allout-expose-topic's mix is handled properly.
handled-expose
+ handled-conceal
covered
deactivate-mark)