diff options
author | Dave Love <fx@gnu.org> | 2000-05-18 13:12:08 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-05-18 13:12:08 +0000 |
commit | dae6cb9fe9067aeeeac317287e2410ae02af538f (patch) | |
tree | 45c70bd61e6dd441037ebc579146a5b99f8fac04 /lisp/calendar | |
parent | a198aa548e0ab281c214a3f97d6417f86f04c3a8 (diff) | |
download | emacs-dae6cb9fe9067aeeeac317287e2410ae02af538f.tar.gz |
(appt-make-list): Match all lines of entry.
From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
Diffstat (limited to 'lisp/calendar')
-rw-r--r-- | lisp/calendar/appt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/appt.el b/lisp/calendar/appt.el index 9b93db96c27..04c8a3dd607 100644 --- a/lisp/calendar/appt.el +++ b/lisp/calendar/appt.el @@ -526,7 +526,7 @@ They specify the range of dates that the diary is being processed for." (cadr (car entry-list))) 1 -1))) (while (string-match - "[0-9]?[0-9]:[0-9][0-9]\\(am\\|pm\\)?.*" + "[0-9]?[0-9]:[0-9][0-9]\\(am\\|pm\\)?\\(.*\n\\)*.*" time-string) (let* ((appt-time-string (match-string 0 time-string))) |