Function: rst-Ado-equal
rst-Ado-equal is a byte-compiled function defined in rst.el.gz.
Signature
(rst-Ado-equal SELF OTHER)
Documentation
Return non-nil when SELF and OTHER are equal.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defun rst-Ado-equal (self other)
;; testcover: ok.
"Return non-nil when SELF and OTHER are equal."
(cl-check-type self rst-Ado)
(cl-check-type other rst-Ado)
(cond
((not (eq (rst-Ado--style self) (rst-Ado--style other)))
nil)
((rst-Ado-is-transition self))
((equal (rst-Ado-char self) (rst-Ado-char other)))))