Function: org-mobile-tags-same-p

org-mobile-tags-same-p is a byte-compiled function defined in org-mobile.el.gz.

Signature

(org-mobile-tags-same-p LIST1 LIST2)

Documentation

Are the two tag lists the same?

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mobile.el.gz
(defun org-mobile-tags-same-p (list1 list2)
  "Are the two tag lists the same?"
  (not (or (org-delete-all list1 list2)
	   (org-delete-all list2 list1))))