Skip to content

Commit bb01be1

Browse files
authored
Add missing argument in call to cl-assert (#4730)
1 parent ac71048 commit bb01be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lsp-protocol.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Otherwise, PROPERTY is let-bound to the field's value.
270270
(cl-check-type interface symbol)
271271
(let ((lsp-pcase-macroexpander
272272
(intern (format "lsp--pcase-macroexpander-%s" interface))))
273-
(cl-assert (fboundp lsp-pcase-macroexpander) "not a known LSP interface: %s" interface)
273+
(cl-assert (fboundp lsp-pcase-macroexpander) nil "not a known LSP interface: %s" interface)
274274
(apply lsp-pcase-macroexpander property-bindings)))
275275

276276
(if lsp-use-plists

0 commit comments

Comments
 (0)