Function: org-verify-change-for-undo

org-verify-change-for-undo is a byte-compiled function defined in org-agenda.el.gz.

Signature

(org-verify-change-for-undo L1 L2)

Documentation

Verify that a real change occurred between the undo lists L1 and L2.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-verify-change-for-undo (l1 l2)
  "Verify that a real change occurred between the undo lists L1 and L2."
  (while (and l1 (listp l1) (null (car l1))) (pop l1))
  (while (and l2 (listp l2) (null (car l2))) (pop l2))
  (not (eq l1 l2)))