Skip to content

Commit e014c51

Browse files
vemvbbatsov
authored andcommitted
Rename a variable
1 parent be4fc36 commit e014c51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cider-eldoc.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -236,14 +236,14 @@ THING is the special form's name. POS is the argument index of the
236236
special-form's arglists. ELDOC-INFO is a p-list containing the eldoc
237237
information."
238238
(let* ((ns (lax-plist-get eldoc-info "ns"))
239-
(symbol (lax-plist-get eldoc-info "symbol"))
239+
(special-form-symbol (lax-plist-get eldoc-info "symbol"))
240240
(arglists (mapcar (lambda (arglist)
241-
(if (equal (car arglist) symbol)
241+
(if (equal (car arglist) special-form-symbol)
242242
(cdr arglist)
243243
arglist))
244244
(lax-plist-get eldoc-info "arglists"))))
245245
(format "%s: %s"
246-
(cider-eldoc-format-thing ns symbol thing 'fn)
246+
(cider-eldoc-format-thing ns special-form-symbol thing 'fn)
247247
(cider-eldoc-format-arglist arglists pos))))
248248

249249
(defun cider-highlight-args (arglist pos)

0 commit comments

Comments
 (0)