Skip to content

Commit 7be7f30

Browse files
authored
Fix for Issue 159. (#161)
* Remove extra parens in -if-let binding form * Revert "Remove extra parens in -if-let binding form" This reverts commit d85dd98. * Remove erroneous extra parens in -if-let binding form This fixes #159 The previous commit was reverted, as that was incorrect.
1 parent 7011f3c commit 7be7f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lsp-treemacs-generic.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
(if expanded? "" "")
8787
" ")
8888
(or (plist-get item :icon-literal)
89-
(-if-let ((icon (plist-get item :icon)))
89+
(-if-let (icon (plist-get item :icon))
9090
(treemacs-get-icon-value
9191
icon
9292
nil

0 commit comments

Comments
 (0)