mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-26 10:49:33 +00:00
(calendar-goto-julian-date): Use assoc-string instead of
assoc-ignore-case.
This commit is contained in:
parent
53d0b6a293
commit
2ad9ebbd12
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user