Skip to content

Commit 87a40b7

Browse files
authored
bound-and-true-p params must not be quoted (#209)
1 parent 9b9f1a7 commit 87a40b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lsp-ui-sideline.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ CURRENT is non-nil when the point is on the symbol."
303303
"Show diagnostics on the current line."
304304
(let ((bol (line-beginning-position))
305305
(eol (line-end-position)))
306-
(when (bound-and-true-p 'flycheck-mode)
306+
(when (bound-and-true-p flycheck-mode)
307307
(dolist (e (flycheck-overlay-errors-in bol (1+ eol)))
308308
(let* ((message (--> (flycheck-error-format-message-and-id e)
309309
(car (split-string it "\n"))

0 commit comments

Comments
 (0)