Skip to content

Commit a914e5d

Browse files
committed
Code style
1 parent a07262b commit a914e5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cider-util.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Unless you specify a BUFFER it will default to the current one."
134134
(scaled-rgb (mapcar (lambda (n)
135135
(format "%04x" (round (+ n (* scale 65535)))))
136136
rgb)))
137-
(apply 'concat "#" scaled-rgb)))
137+
(apply #'concat "#" scaled-rgb)))
138138

139139
(defun cider-scale-background-color ()
140140
"Scale the current background color to get a slighted muted version."
@@ -154,7 +154,7 @@ Unless you specify a BUFFER it will default to the current one."
154154

155155
(defun cider-string-join (strings &optional separator)
156156
"Join all STRINGS using SEPARATOR."
157-
(mapconcat 'identity strings separator))
157+
(mapconcat #'identity strings separator))
158158

159159
(defun cider-join-into-alist (candidates &optional separator)
160160
"Make an alist from CANDIDATES.

0 commit comments

Comments
 (0)