summaryrefslogtreecommitdiff
path: root/cider-repl.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2017-07-09 10:21:09 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2017-07-09 10:21:09 +0300
commit976ffdbb57bf1a394c4705bdf0ed773c054c63bc (patch)
tree84d72c283f60b9d21d40c228380315e98a19f11a /cider-repl.el
parent2de15d1e3afb744f6c549b661640aed649617219 (diff)
Use #' consistently for :safe predicates
Diffstat (limited to 'cider-repl.el')
-rw-r--r--cider-repl.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-repl.el b/cider-repl.el
index aea841fe..8322b568 100644
--- a/cider-repl.el
+++ b/cider-repl.el
@@ -1069,13 +1069,13 @@ If USE-CURRENT-INPUT is non-nil, use the current input."
(defcustom cider-repl-history-size 500
"The maximum number of items to keep in the REPL history."
:type 'integer
- :safe 'integerp
+ :safe #'integerp
:group 'cider-repl)
(defcustom cider-repl-history-file nil
"File to save the persistent REPL history to."
:type 'string
- :safe 'stringp
+ :safe #'stringp
:group 'cider-repl)
(defun cider-repl--history-read-filename ()