From 7ff020486d03859e1608a479cbad72a039a75489 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Sun, 13 Sep 1998 03:45:02 +0000 Subject: [PATCH] (mark-sexp-diary-entries): Fix previous chg. --- lisp/calendar/diary-lib.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el index 65f34c64474..2f0dfd7cfc2 100644 --- a/lisp/calendar/diary-lib.el +++ b/lisp/calendar/diary-lib.el @@ -840,11 +840,14 @@ is marked. See the documentation for the function `list-sexp-diary-entries'." (backward-char 1) (setq entry "")) (setq entry-start (point)) + ;; Find end of entry (re-search-forward "\^M\\|\n" nil t) (while (looking-at " \\|\^I") (or (re-search-forward "\^M\\|\n" nil t) (re-search-forward "$" nil t))) - (backward-char 1) + (if (or (char-equal (preceding-char) ?\^M) + (char-equal (preceding-char) ?\n)) + (backward-char 1)) (setq entry (buffer-substring-no-properties entry-start (point))) (while (string-match "[\^M]" entry) (aset entry (match-beginning 0) ?\n ))) -- 2.39.2