all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Glenn Morris <rgm@gnu.org>
To: 7377-done@debbugs.gnu.org
Subject: bug#7377: 23.2; Diary entries displayed twice
Date: Thu, 11 Nov 2010 14:48:03 -0500	[thread overview]
Message-ID: <dtbp5vej64.fsf@fencepost.gnu.org> (raw)
In-Reply-To: <4CDC2EE0.9090004@gmail.com> (Frank Lovelace's message of "Thu\,  11 Nov 2010 10\:58\:56 -0700")

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	other threads:[~2010-11-11 19:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-11 17:58 bug#7377: 23.2; Diary entries displayed twice Frank Lovelace
2010-11-11 19:48 ` Glenn Morris [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=dtbp5vej64.fsf@fencepost.gnu.org \
    --to=rgm@gnu.org \
    --cc=7377-done@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.