emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/cider e014c517d8 2/3: Rename a variable


From: ELPA Syncer
Subject: [nongnu] elpa/cider e014c517d8 2/3: Rename a variable
Date: Sat, 24 Jun 2023 03:59:53 -0400 (EDT)

branch: elpa/cider
commit e014c517d855cb820d4d29c5c76116a7b83b5364
Author: vemv <vemv@users.noreply.github.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Rename a variable
---
 cider-eldoc.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cider-eldoc.el b/cider-eldoc.el
index f7a3723694..110276d131 100644
--- a/cider-eldoc.el
+++ b/cider-eldoc.el
@@ -236,14 +236,14 @@ THING is the special form's name.  POS is the argument 
index of the
 special-form's arglists.  ELDOC-INFO is a p-list containing the eldoc
 information."
   (let* ((ns (lax-plist-get eldoc-info "ns"))
-         (symbol (lax-plist-get eldoc-info "symbol"))
+         (special-form-symbol (lax-plist-get eldoc-info "symbol"))
          (arglists (mapcar (lambda (arglist)
-                             (if (equal (car arglist) symbol)
+                             (if (equal (car arglist) special-form-symbol)
                                  (cdr arglist)
                                arglist))
                            (lax-plist-get eldoc-info "arglists"))))
     (format "%s: %s"
-            (cider-eldoc-format-thing ns symbol thing 'fn)
+            (cider-eldoc-format-thing ns special-form-symbol thing 'fn)
             (cider-eldoc-format-arglist arglists pos))))
 
 (defun cider-highlight-args (arglist pos)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]