1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(fill-c++-comment): Use insert instead of insert-string.

This commit is contained in:
Pavel Janík 2001-11-26 16:21:40 +00:00
parent add91c7b94
commit 4f2436ae0e

View File

@ -898,7 +898,7 @@ The fill lines remain a comment."
(while (looking-at fill-prefix)
(previous-line 1))
(next-line 1)
(insert-string "\n")
(insert "\n")
(fill-paragraph nil)
(delete-char -1)
(setq fill-prefix save))))