Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix do-var
  • Loading branch information
vemv committed Apr 19, 2024
commit 4351dda9d1c3fa70040858c1fca21fedbc4499fb
5 changes: 4 additions & 1 deletion cider-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,10 @@ with the given LIMIT."
(push sym macros))
((and do-function is-function)
(push sym functions))
((and do-var (not is-function) (not is-macro))
((and do-var
(not is-any-custom)
(not is-function)
(not is-macro))
(push sym vars))
(is-custom-1
(push sym custom-1))
Expand Down