Skip to content

Commit 976ffdb

Browse files
committed
Use #' consistently for :safe predicates
1 parent 2de15d1 commit 976ffdb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cider-eldoc.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ a \"& x more\" suffix. Otherwise, all the classes are displayed."
8282
So in (map inc ...) when the cursor is over inc its eldoc would be
8383
displayed. When nil, always display eldoc for first symbol of the sexp."
8484
:type 'boolean
85-
:safe 'booleanp
85+
:safe #'booleanp
8686
:group 'cider
8787
:package-version '(cider . "0.13.0"))
8888

cider-repl.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1069,13 +1069,13 @@ If USE-CURRENT-INPUT is non-nil, use the current input."
10691069
(defcustom cider-repl-history-size 500
10701070
"The maximum number of items to keep in the REPL history."
10711071
:type 'integer
1072-
:safe 'integerp
1072+
:safe #'integerp
10731073
:group 'cider-repl)
10741074

10751075
(defcustom cider-repl-history-file nil
10761076
"File to save the persistent REPL history to."
10771077
:type 'string
1078-
:safe 'stringp
1078+
:safe #'stringp
10791079
:group 'cider-repl)
10801080

10811081
(defun cider-repl--history-read-filename ()

0 commit comments

Comments
 (0)