]> git.eshelyaron.com Git - emacs.git/commitdiff
Touch up last commit
authorMichal Krzywkowski <k.michal@zoho.com>
Wed, 28 Nov 2018 18:53:35 +0000 (19:53 +0100)
committerMichal Krzywkowski <k.michal@zoho.com>
Wed, 28 Nov 2018 18:53:35 +0000 (19:53 +0100)
* eglot.el (eglot-current-column): Rename from eglot--current-column.
(eglot-current-column-function): Use it as value and mention in docstring.
(eglot--xref-make): Use eglot-current-column.

lisp/progmodes/eglot.el

index 94de8d1bc48151a795a69a3134d3154b5663ca2d..2519189ca4d090990cac8f80d3eb4e7b20e49251 100644 (file)
@@ -811,16 +811,16 @@ CONNECT-ARGS are passed as additional arguments to
   (let ((warning-minimum-level :error))
     (display-warning 'eglot (apply #'format format args) :warning)))
 
-(defun eglot--current-column () (- (point) (point-at-bol)))
+(defun eglot-current-column () (- (point) (point-at-bol)))
 
-(defvar eglot-current-column-function #'eglot--current-column
+(defvar eglot-current-column-function #'eglot-current-column
   "Function to calculate the current column.
 
 This is the inverse operation of
 `eglot-move-to-column-function' (which see).  It is a function of
 no arguments returning a column number.  For buffers managed by
 fully LSP-compliant servers, this should be set to
-`eglot-lsp-abiding-column', and `current-column' (the default)
+`eglot-lsp-abiding-column', and `eglot-current-column' (the default)
 for all others.")
 
 (defun eglot-lsp-abiding-column ()
@@ -1506,7 +1506,7 @@ Try to visit the target file for a richer summary line."
                                 (substring (buffer-substring bol (point-at-eol))))
                      (add-face-text-property (- beg bol) (- end bol) 'highlight
                                              t substring)
-                     (list substring (1+ (current-line)) (eglot--current-column))))))
+                     (list substring (1+ (current-line)) (eglot-current-column))))))
        (`(,summary ,line ,column)
         (cond
          (visiting (with-current-buffer visiting (funcall collect)))