Function: preview-relaxed-string=
preview-relaxed-string= is a byte-compiled function defined in
preview.el.
Signature
(preview-relaxed-string= &rest ARGS)
Documentation
Check for functional equality of arguments.
The arguments ARGS are checked for equality by using
preview-equality-transforms on them until it is exhausted
or one transform returns equality.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-relaxed-string= (&rest args)
"Check for functional equality of arguments.
The arguments ARGS are checked for equality by using
`preview-equality-transforms' on them until it is exhausted
or one transform returns equality."
(let ((lst preview-equality-transforms))
(while (and lst (not (apply #'string= (mapcar (car lst) args))))
(setq lst (cdr lst)))
lst))