]> git.eshelyaron.com Git - emacs.git/commitdiff
(calendar-goto-julian-date): Use assoc-string instead of
authorGlenn Morris <rgm@gnu.org>
Thu, 19 Feb 2004 01:18:23 +0000 (01:18 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 19 Feb 2004 01:18:23 +0000 (01:18 +0000)
assoc-ignore-case.

lisp/calendar/cal-julian.el

index ac422602dc4a434ac41f8e64897f8edcf8a2c1c9..67fb8515b24b621a9f16e9fc62b464dba107cfc6 100644 (file)
@@ -115,12 +115,12 @@ Driven by the variable `calendar-date-display-form'."
                      today))))))
           (month-array calendar-month-name-array)
           (completion-ignore-case t)
-          (month (cdr (assoc-ignore-case
+          (month (cdr (assoc-string
                         (completing-read
                          "Julian calendar month name: "
                          (mapcar 'list (append month-array nil))
                          nil t)
-                       (calendar-make-alist month-array 1))))
+                       (calendar-make-alist month-array 1) t)))
           (last
            (if (and (zerop (% year 4)) (= month 2))
                29