diff options
| author | Pavel Janík | 2001-11-26 16:19:34 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-11-26 16:19:34 +0000 |
| commit | 4cf95c440bc218314bdd14779086361a6240a36e (patch) | |
| tree | 6df814c4df322eb2483ca1f55119cf18218b62bd | |
| parent | 0e13751e8aa55867b7b9ddadc248f78fb084ab3e (diff) | |
| download | emacs-4cf95c440bc218314bdd14779086361a6240a36e.tar.gz emacs-4cf95c440bc218314bdd14779086361a6240a36e.zip | |
(list-diary-entries): Use insert instead of insert-string.
| -rw-r--r-- | lisp/calendar/diary-lib.el | 4 |
1 files 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: | |||
| 261 | (if (not (looking-at "\^M\\|\n")) | 261 | (if (not (looking-at "\^M\\|\n")) |
| 262 | (progn | 262 | (progn |
| 263 | (goto-char (point-max)) | 263 | (goto-char (point-max)) |
| 264 | (insert-string "\^M"))) | 264 | (insert "\^M"))) |
| 265 | (goto-char (point-min)) | 265 | (goto-char (point-min)) |
| 266 | (if (not (looking-at "\^M\\|\n")) | 266 | (if (not (looking-at "\^M\\|\n")) |
| 267 | (insert-string "\^M")) | 267 | (insert "\^M")) |
| 268 | (subst-char-in-region (point-min) (point-max) ?\n ?\^M t) | 268 | (subst-char-in-region (point-min) (point-max) ?\n ?\^M t) |
| 269 | (calendar-for-loop i from 1 to number do | 269 | (calendar-for-loop i from 1 to number do |
| 270 | (let ((d diary-date-forms) | 270 | (let ((d diary-date-forms) |