Function: eww-desktop-history-duplicate

eww-desktop-history-duplicate is a byte-compiled function defined in eww.el.gz.

Signature

(eww-desktop-history-duplicate A B)

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-desktop-history-duplicate (a b)
  (let ((tail a) (r t))
    (while tail
      (if (or (memq (car tail) '(:point)) ; ignore :point
	      (equal (cadr tail)
		     (plist-get b (car tail))))
	  (setq tail (cddr tail))
	(setq tail nil
	      r    nil)))
    ;; .
    r))