branch: master
commit bc5e1a78dc159bb06f8b80667c75f4cb37bab201
Author: Justin Burkett <[email protected]>
Commit: Justin Burkett <[email protected]>
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."