(calendar-goto-julian-date): Use assoc-string instead of
assoc-ignore-case.
This commit is contained in:
parent
53d0b6a293
commit
2ad9ebbd12
1 changed files with 2 additions and 2 deletions
|
@ -115,12 +115,12 @@ Driven by the variable `calendar-date-display-form'."
|
||||||
today))))))
|
today))))))
|
||||||
(month-array calendar-month-name-array)
|
(month-array calendar-month-name-array)
|
||||||
(completion-ignore-case t)
|
(completion-ignore-case t)
|
||||||
(month (cdr (assoc-ignore-case
|
(month (cdr (assoc-string
|
||||||
(completing-read
|
(completing-read
|
||||||
"Julian calendar month name: "
|
"Julian calendar month name: "
|
||||||
(mapcar 'list (append month-array nil))
|
(mapcar 'list (append month-array nil))
|
||||||
nil t)
|
nil t)
|
||||||
(calendar-make-alist month-array 1))))
|
(calendar-make-alist month-array 1) t)))
|
||||||
(last
|
(last
|
||||||
(if (and (zerop (% year 4)) (= month 2))
|
(if (and (zerop (% year 4)) (= month 2))
|
||||||
29
|
29
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue