Skip to content

Commit

Permalink
Merge pull request #125 from jcs-PR/fix/com
Browse files Browse the repository at this point in the history
fix: Byte-compile warnings
  • Loading branch information
jcs090218 authored Mar 31, 2024
2 parents 3a41dba + 1f57b11 commit 9c91aad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Eask
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"0.1"
"ccls client for lsp-mode")

(website-url "https://github.com/MaskRay/emacs-ccls")
(website-url "https://github.com/emacs-lsp/emacs-ccls")
(keywords "languages" "lsp" "c++")

(package-file "ccls.el")
Expand Down
2 changes: 1 addition & 1 deletion ccls-call-hierarchy.el
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
(CclsCall (:id :name :location :callType :numChildren :children) nil)))

(defun ccls-call-hierarchy--read-node (data &optional parent)
"Construct a call tree node from hashmap DATA and give it the parent PARENT"
"Construct a call tree node from hashmap DATA and give it the parent PARENT."
(-let* (((&CclsCall :id :name :location :call-type :num-children) data)
(filename (lsp--uri-to-path (lsp:location-uri location))))
(make-ccls-tree-node
Expand Down
2 changes: 1 addition & 1 deletion ccls-code-lens.el
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
(ccls--make-code-lens-string (if (/= c0 col) "|" " ") command?)))
(when ov
(overlay-put ov 'display (concat (overlay-get ov 'display) "\n")))
(let ((p (point-at-eol)))
(let ((p (line-end-position)))
(setq ov (make-overlay p (1+ p) nil 'front-advance))
(overlay-put ov 'ccls-code-lens t)
(overlay-put ov 'display (ccls--make-code-lens-string " " command?))))
Expand Down
2 changes: 1 addition & 1 deletion ccls.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
;; Author: Tobias Pisani, Fangrui Song
;; Package-Version: 20200621
;; Version: 0.1
;; Homepage: https://github.com/MaskRay/emacs-ccls
;; Homepage: https://github.com/emacs-lsp/emacs-ccls
;; Package-Requires: ((emacs "27.1") (lsp-mode "6.3.1") (dash "2.14.1"))
;; Keywords: languages, lsp, c++

Expand Down

0 comments on commit 9c91aad

Please sign in to comment.