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

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

bug#67203: closed ([PATCH] * lisp/calendar/diary-lib.el (diary-list-entr


From: GNU bug Tracking System
Subject: bug#67203: closed ([PATCH] * lisp/calendar/diary-lib.el (diary-list-entries-2) skip leading whitespace in diary entries)
Date: Fri, 29 Dec 2023 03:43:02 +0000

Your message dated Thu, 28 Dec 2023 19:42:01 -0800
with message-id 
<CADwFkmnZzNG3SYAMbeQLwTkd+We3m=2YPFmK_dZy3fPwBwRrMg@mail.gmail.com>
and subject line Re: bug#67203: [PATCH] * lisp/calendar/diary-lib.el 
(diary-list-entries-2) skip leading whitespace in diary entries
has caused the debbugs.gnu.org bug report #67203,
regarding [PATCH] * lisp/calendar/diary-lib.el (diary-list-entries-2) skip 
leading whitespace in diary entries
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
67203: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67203
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] * lisp/calendar/diary-lib.el (diary-list-entries-2) skip leading whitespace in diary entries Date: Wed, 15 Nov 2023 21:13:31 +1000
---
When diary entries have more than a single space between date and entry
this is displayed in diary display. This skips the leading whitespace.


 lisp/calendar/diary-lib.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el
index 0d894f1..6806039 100644
--- a/lisp/calendar/diary-lib.el
+++ b/lisp/calendar/diary-lib.el
@@ -697,6 +697,8 @@ any entries were found."
                 (setq date-start (line-end-position 0))
                 ;; Actual entry starts on the next-line?
                 (if (looking-at "[ \t]*\n[ \t]") (forward-line 1))
+                ;; We don't want leading whitespace
+                (skip-chars-forward " \t")
                 (setq entry-found t
                       entry-start (point))
                 (forward-line 1)
-- 
2.42.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#67203: [PATCH] * lisp/calendar/diary-lib.el (diary-list-entries-2) skip leading whitespace in diary entries Date: Thu, 28 Dec 2023 19:42:01 -0800
"Paul W. Rankin" <hello@paulwrankin.com> writes:

> Sorry for the late reply. I actually stopped using calendar. Twas but a
> brief interlude. I think there's a problem with my patch anyway.

OK, thanks.  I'm therefore closing this bug report.


--- End Message ---

reply via email to

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