From: Pavel Janík Date: Mon, 26 Nov 2001 16:19:34 +0000 (+0000) Subject: (list-diary-entries): Use insert instead of insert-string. X-Git-Tag: ttn-vms-21-2-B4~18128 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4cf95c440bc218314bdd14779086361a6240a36e;p=emacs.git (list-diary-entries): Use insert instead of insert-string. --- 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)