Comment 7 for bug 246354

Revision history for this message
Paul Huygen (paul-huygen) wrote :

The following modification seems to fix the problem that I described in previous message:

In the function definition of "update-std-header" in file "std_comment.el", replace the lines:

 (kill-line)
 (rotate-yank-pointer 1)

by:
                (let ((beg (point)))
                   (forward-line 1)
                   (forward-char -1)
                   (delete-region beg (point)))

(I found these lines in <http://www.emacswiki.org/emacs/ElispCookbook#toc15>).

As a side affect, the old "last update" line will no longer be included into the kill ring.

Thanks,

Paul Huygen