Skip to content

Commit 9c91aad

Browse files
authored
Merge pull request #125 from jcs-PR/fix/com
fix: Byte-compile warnings
2 parents 3a41dba + 1f57b11 commit 9c91aad

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Eask

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"0.1"
33
"ccls client for lsp-mode")
44

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

88
(package-file "ccls.el")

ccls-call-hierarchy.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
(CclsCall (:id :name :location :callType :numChildren :children) nil)))
6565

6666
(defun ccls-call-hierarchy--read-node (data &optional parent)
67-
"Construct a call tree node from hashmap DATA and give it the parent PARENT"
67+
"Construct a call tree node from hashmap DATA and give it the parent PARENT."
6868
(-let* (((&CclsCall :id :name :location :call-type :num-children) data)
6969
(filename (lsp--uri-to-path (lsp:location-uri location))))
7070
(make-ccls-tree-node

ccls-code-lens.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
(ccls--make-code-lens-string (if (/= c0 col) "|" " ") command?)))
107107
(when ov
108108
(overlay-put ov 'display (concat (overlay-get ov 'display) "\n")))
109-
(let ((p (point-at-eol)))
109+
(let ((p (line-end-position)))
110110
(setq ov (make-overlay p (1+ p) nil 'front-advance))
111111
(overlay-put ov 'ccls-code-lens t)
112112
(overlay-put ov 'display (ccls--make-code-lens-string " " command?))))

ccls.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
;; Author: Tobias Pisani, Fangrui Song
77
;; Package-Version: 20200621
88
;; Version: 0.1
9-
;; Homepage: https://github.com/MaskRay/emacs-ccls
9+
;; Homepage: https://github.com/emacs-lsp/emacs-ccls
1010
;; Package-Requires: ((emacs "27.1") (lsp-mode "6.3.1") (dash "2.14.1"))
1111
;; Keywords: languages, lsp, c++
1212

0 commit comments

Comments
 (0)