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

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

[elpa] master bc5e1a7 07/57: Remove debugging message


From: Justin Burkett
Subject: [elpa] master bc5e1a7 07/57: Remove debugging message
Date: Tue, 3 Nov 2020 14:32:18 -0500 (EST)

branch: master
commit bc5e1a78dc159bb06f8b80667c75f4cb37bab201
Author: Justin Burkett <justin@burkett.cc>
Commit: Justin Burkett <justin@burkett.cc>

    Remove debugging message
---
 vdiff.el | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/vdiff.el b/vdiff.el
index 88c954c..ebab055 100644
--- a/vdiff.el
+++ b/vdiff.el
@@ -567,11 +567,9 @@ an addition when compared to other vdiff buffers."
   (forward-line)
   (let ((a (car lines))
         (b (cdr lines)))
-    (prog1
-        (cond ((or (looking-at-p " ") (eobp)) (cons (1+ a) (1+ b)))
-              ((looking-at-p "+") (cons a (1+ b)))
-              ((looking-at-p "-") (cons (1+ a) b)))
-      (message "a:%s b:%s l:%s" a b (buffer-substring (point) 
(line-end-position))))))
+    (cond ((or (looking-at-p " ") (eobp)) (cons (1+ a) (1+ b)))
+          ((looking-at-p "+") (cons a (1+ b)))
+          ((looking-at-p "-") (cons (1+ a) b)))))
 
 (defun vdiff--parse-diff-u (buf)
   "Parse diff -u output in BUF and return list of hunks."



reply via email to

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