]> git.eshelyaron.com Git - emacs.git/commitdiff
(assoc-ignore-case): Function deleted.
authorRichard M. Stallman <rms@gnu.org>
Thu, 8 May 1997 06:02:42 +0000 (06:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 8 May 1997 06:02:42 +0000 (06:02 +0000)
(bibtex-member-of-regexp): Renamed from member-of-regexp.
Call changed.

lisp/textmodes/bibtex.el

index f41f48951fe09d91751fd8180bc95a1400ec178c..d55321142ad8ae154c6843ea9f4ace13f40638ea 100644 (file)
@@ -782,19 +782,7 @@ See the documentation of function bibtex-generate-autokey for further detail.")
 \f
 ;; Helper Functions
 
-(defun assoc-ignore-case (string alist)
-  ;; Return non-nil if STRING is `equal' to the car of an element of
-  ;; LIST. Comparison is done with case ignored. The value is actually
-  ;; the element of LIST whose car is `equal' to STRING.
-  (or (assoc string alist)
-      (while (and alist
-                 (not (string-equal
-                        (downcase string)
-                        (downcase (car (car alist))))))
-       (setq alist (cdr alist)))
-      (car alist)))
-
-(defun member-of-regexp (string list)
+(defun bibtex-member-of-regexp (string list)
   ;; Return non-nil if STRING is exactly matched by an element of
   ;; LIST. This function is influenced by the actual value of
   ;; `case-fold-search'. The value is actually the tail of LIST whose
@@ -1230,7 +1218,7 @@ The generation algorithm works as follows:
                           (< counter bibtex-autokey-titlewords))
                          (if (and
                               first
-                              (member-of-regexp
+                              (bibtex-member-of-regexp
                                titleword
                                bibtex-autokey-titleword-first-ignore))
                              (setq counter -1)