bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#7377: 23.2; Diary entries displayed twice


From: Glenn Morris
Subject: bug#7377: 23.2; Diary entries displayed twice
Date: Thu, 11 Nov 2010 14:48:03 -0500
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Version: 23.3

Frank Lovelace wrote:

> Then from within calendar with point on 11th of any month press d to
> display dairy, "pay bills" is written twice.

It is because in the default value of diary-iso-date-forms, both these
elements match your entry:

(year "[-/]" month "[-/]" day "[^0-9]")
(year "-" monthname "-" day "[^0-9]")

This is a no-no, the elements are supposed to be mutually exclusive.

For 23.3, I will change the default diary-iso-date-forms to:

 '((month "[-/]" day "[^-/0-9]")
    (year "[-/]" month "[-/]" day "[^0-9]")
    (monthname " *" day "[^-0-9]")
    (year " *" monthname " *" day "[^0-9]")
    (dayname "\\W"))

You can manually set `diary-date-forms' to that in 23.2.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]