]> git.eshelyaron.com Git - emacs.git/commitdiff
Provide missing let definition to prevent background void-variable error.
authorKen Manheimer <ken.manheimer@gmail.com>
Mon, 6 Jul 2020 17:19:11 +0000 (13:19 -0400)
committerKen Manheimer <ken.manheimer@gmail.com>
Mon, 20 Jul 2020 18:05:46 +0000 (14:05 -0400)
* 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.)

lisp/allout-widgets.el

index e7750b3606e5c0c3069f2e31f5923cb92bfd2438..64f2ba500d9452c3f2f6876836c41ae2cdb497f9 100644 (file)
@@ -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)