]> git.eshelyaron.com Git - emacs.git/commitdiff
(mark-diary-entries): Use assoc-string instead of assoc-ignore-case.
authorGlenn Morris <rgm@gnu.org>
Thu, 19 Feb 2004 01:20:03 +0000 (01:20 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 19 Feb 2004 01:20:03 +0000 (01:20 +0000)
lisp/calendar/diary-lib.el

index d2a0075fb7116704c3d84160509e78835839a7fd..bb4ea20f80403e071c2439ddc405c9fd17d29b53 100644 (file)
@@ -906,19 +906,19 @@ After the entries are marked, the hooks `nongregorian-diary-marking-hook' and
                              marks (nth 1 temp))))
                 (if dd-name
                     (mark-calendar-days-named
-                     (cdr (assoc-ignore-case
+                     (cdr (assoc-string
                            dd-name
                            (calendar-make-alist
                             calendar-day-name-array
-                            0 nil calendar-day-abbrev-array))) marks)
+                            0 nil calendar-day-abbrev-array) t)) marks)
                   (if mm-name
                       (setq mm
                             (if (string-equal mm-name "*") 0
-                              (cdr (assoc-ignore-case
+                              (cdr (assoc-string
                                     mm-name
                                     (calendar-make-alist
                                      calendar-month-name-array
-                                     1 nil calendar-month-abbrev-array))))))
+                                     1 nil calendar-month-abbrev-array) t)))))
                   (mark-calendar-date-pattern mm dd yy marks))))
             (setq d (cdr d))))
         (mark-sexp-diary-entries)