We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd83398 commit d4b2e1cCopy full SHA for d4b2e1c
docstr.el
@@ -185,7 +185,7 @@ You should customize this variable to add your own triggeration methods."
185
(defun docstr--enable-trigger (act)
186
"Enable/Disable trigger base on boolean ACT."
187
(dolist (tri docstr-trigger-alist)
188
- (let* ((mode (car tri)) (data (cdr tri))
+ (let* ((_mode (car tri)) (data (cdr tri))
189
(key (nth 0 data)) (fnc (nth 1 data)))
190
(if act (docstr-util-key-advice-add key :after fnc)
191
(docstr-util-key-advice-remove key fnc)))))
0 commit comments