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

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

[elpa] externals/diff-hl 5d90cca340 2/2: Merge pull request #191 from ta


From: ELPA Syncer
Subject: [elpa] externals/diff-hl 5d90cca340 2/2: Merge pull request #191 from tarsiiformes/obsolete
Date: Mon, 19 Sep 2022 06:57:41 -0400 (EDT)

branch: externals/diff-hl
commit 5d90cca340cb72a821dd20635e4f5a924dd20ccf
Merge: 37b00f3bad 8bf96cd5dc
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: GitHub <noreply@github.com>

    Merge pull request #191 from tarsiiformes/obsolete
    
    Use line-beginning-position instead of obsolete point-at-bol
---
 diff-hl-inline-popup.el | 2 +-
 diff-hl-show-hunk.el    | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/diff-hl-inline-popup.el b/diff-hl-inline-popup.el
index 3e9f4172ec..bee6ce10e3 100644
--- a/diff-hl-inline-popup.el
+++ b/diff-hl-inline-popup.el
@@ -247,7 +247,7 @@ is closed."
 
   (when (< (diff-hl-inline-popup--compute-content-height 99) 2)
     (user-error "There is no enough vertical space to show the inline popup"))
-  (let* ((the-point (or point (point-at-eol)))
+  (let* ((the-point (or point (line-end-position)))
          (the-buffer (current-buffer))
          (overlay (make-overlay the-point the-point the-buffer)))
     (overlay-put overlay 'phantom t)
diff --git a/diff-hl-show-hunk.el b/diff-hl-show-hunk.el
index 00f6d92a74..c3adcb539d 100644
--- a/diff-hl-show-hunk.el
+++ b/diff-hl-show-hunk.el
@@ -179,7 +179,9 @@ Returns a list with the buffer and the line number of the 
clicked line."
 
       ;; Highlight the clicked line
       (goto-char point-in-buffer)
-      (setq line-overlay (make-overlay (point-at-bol) (min (point-max) (1+ 
(point-at-eol)))))
+      (setq line-overlay (make-overlay (line-beginning-position)
+                                       (min (point-max)
+                                            (1+ (line-end-position)))))
 
       ;; diff-mode
       (diff-mode)



reply via email to

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