1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

(add-change-log-entry): Insert version number

if having found a current function.
This commit is contained in:
Gerd Moellmann 2000-01-11 15:36:02 +00:00
parent c1356086c3
commit 57df2446ea
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,7 @@
2000-01-09 Sun Jari Aalto <jari.aalto@poboxes.com>
2000-01-11 Sun Jari Aalto <jari.aalto@poboxes.com>
* add-log.el (add-change-log-entry): Insert version number
if having found a current function.
* add-log.el (add-log-current-defun): Call
`add-log-current-defun-function'. Try matches at level 0 and

View File

@ -486,7 +486,9 @@ non-nil, otherwise in local time."
(if (not (save-excursion
(beginning-of-line 1)
(looking-at "\\s *\\(\\*\\s *\\)?$")))
(insert ": ")))))
(insert ": "
(if version
(concat version " ") ))))))
;;;###autoload
(defun add-change-log-entry-other-window (&optional whoami file-name)