mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(coptic-prompt-for-date): Use assoc-string instead of assoc-ignore-case.
This commit is contained in:
parent
78e37e9cd4
commit
3be2dc285d
1 changed files with 2 additions and 2 deletions
|
|
@ -151,14 +151,14 @@ Echo Coptic date unless NOECHO is t."
|
|||
(calendar-coptic-from-absolute
|
||||
(calendar-absolute-from-gregorian today))))))
|
||||
(completion-ignore-case t)
|
||||
(month (cdr (assoc-ignore-case
|
||||
(month (cdr (assoc-string
|
||||
(completing-read
|
||||
(format "%s calendar month name: " coptic-name)
|
||||
(mapcar 'list
|
||||
(append coptic-calendar-month-name-array nil))
|
||||
nil t)
|
||||
(calendar-make-alist coptic-calendar-month-name-array
|
||||
1))))
|
||||
1) t)))
|
||||
(last (coptic-calendar-last-day-of-month month year))
|
||||
(day (calendar-read
|
||||
(format "%s calendar day (1-%d): " coptic-name last)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue