branch: elpa/htmlize
commit ba5ddf3313a970599180f8c877dc1be17136f968
Author: Hrvoje Niksic <[email protected]>
Commit: Hrvoje Niksic <[email protected]>
Enable edebug stepping into htmlize-lexlet.
---
htmlize.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/htmlize.el b/htmlize.el
index ad06abc..4f7948a 100644
--- a/htmlize.el
+++ b/htmlize.el
@@ -358,12 +358,12 @@ output.")
next-single-char-property-change")))
(defmacro htmlize-lexlet (&rest letforms)
+ (declare (indent 1) (debug let))
(if (and (boundp 'lexical-binding)
lexical-binding)
`(let ,@letforms)
;; cl extensions have a macro implementing lexical let
`(lexical-let ,@letforms)))
-(put 'htmlize-lexlet 'lisp-indent-function 1)
;;; Transformation of buffer text: HTML escapes, untabification, etc.