Skip to content

Commit 03f53e4

Browse files
committed
Rename local variable to fit naming conventions
1 parent 25f688c commit 03f53e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lsp-mode.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,9 +329,9 @@ BODY is the payload, and CONTENT-TYPE is a non-default content type."
329329

330330
(defun lsp-alist-navigate (obj &rest path)
331331
"Extract a property from an alist, using successive symbols from path."
332-
(let ((cur_obj obj))
333-
(dolist (cur path cur_obj)
334-
(setq cur_obj (alist-get cur cur_obj)))))
332+
(let ((cur-obj obj))
333+
(dolist (cur path cur-obj)
334+
(setq cur-obj (alist-get cur cur-obj)))))
335335

336336
(defun lsp-mode-goto-loc (loc)
337337
(let ((comps (split-string (alist-get 'uri loc) "://")))

0 commit comments

Comments
 (0)