Skip to content

Commit a9ff37f

Browse files
committed
Change if-let to if-let*
1 parent 02feb6a commit a9ff37f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rime.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ Currently just deactivate input method."
678678
(if curr
679679
(propertize (car c) 'face 'rime-highlight-candidate-face)
680680
(propertize (car c) 'face 'rime-default-face))
681-
(if-let (comment (cdr c))
681+
(if-let* ((comment (cdr c)))
682682
(propertize (format " %s" comment) 'face 'rime-comment-face)
683683
""))))
684684
(setq result (concat result

0 commit comments

Comments
 (0)