Function: verilog-diff-report

verilog-diff-report is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-diff-report B1 B2 DIFFPT)

Documentation

Report differences detected with verilog-diff-auto.

Differences are between buffers B1 and B2, starting at point DIFFPT. This function is called via verilog-diff-function.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-diff-report (b1 b2 diffpt)
  "Report differences detected with `verilog-diff-auto'.
Differences are between buffers B1 and B2, starting at point
DIFFPT.  This function is called via `verilog-diff-function'."
  (let ((name1 (with-current-buffer b1 (buffer-file-name))))
    (verilog-warn-error "%s:%d: Difference in AUTO expansion found"
                        name1 (with-current-buffer b1
                                (count-lines (point-min) diffpt)))
    (cond (noninteractive
	   (verilog-diff-file-with-buffer name1 b2 t t))
	  (t
	   (ediff-buffers b1 b2)))))