From 4cf95c440bc218314bdd14779086361a6240a36e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Mon, 26 Nov 2001 16:19:34 +0000 Subject: [PATCH] (list-diary-entries): Use insert instead of insert-string. --- lisp/calendar/diary-lib.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el index 58c9ccf5c81..425a809fd5b 100644 --- a/lisp/calendar/diary-lib.el +++ b/lisp/calendar/diary-lib.el @@ -261,10 +261,10 @@ These hooks have the following distinct roles: (if (not (looking-at "\^M\\|\n")) (progn (goto-char (point-max)) - (insert-string "\^M"))) + (insert "\^M"))) (goto-char (point-min)) (if (not (looking-at "\^M\\|\n")) - (insert-string "\^M")) + (insert "\^M")) (subst-char-in-region (point-min) (point-max) ?\n ?\^M t) (calendar-for-loop i from 1 to number do (let ((d diary-date-forms) -- 2.39.5