Function: bibtex-string=
bibtex-string= is a byte-compiled function defined in bibtex.el.gz.
This function is obsolete since 29.1; use string-equal-ignore-case
instead.
Signature
(bibtex-string= STR1 STR2)
Documentation
Return t if STR1 and STR2 are equal, ignoring case.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
;; Helper Functions
(defsubst bibtex-string= (str1 str2)
"Return t if STR1 and STR2 are equal, ignoring case."
(declare (obsolete string-equal-ignore-case "29.1"))
(eq t (compare-strings str1 0 nil str2 0 nil t)))