mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(list-diary-entries): Use insert instead of insert-string.
This commit is contained in:
parent
0e13751e8a
commit
4cf95c440b
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue