diff options
Diffstat (limited to 'lisp/log-edit.el')
-rw-r--r-- | lisp/log-edit.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/log-edit.el b/lisp/log-edit.el index 6a4b316e8e1..54cf34c7be9 100644 --- a/lisp/log-edit.el +++ b/lisp/log-edit.el @@ -4,7 +4,7 @@ ;; Author: Stefan Monnier <monnier@cs.yale.edu> ;; Keywords: pcl-cvs cvs commit log -;; Revision: $Id: log-edit.el,v 1.15 2001/03/07 00:26:25 monnier Exp $ +;; Revision: $Id: log-edit.el,v 1.16 2001/05/11 20:42:58 monnier Exp $ ;; This file is part of GNU Emacs. @@ -188,9 +188,9 @@ If BUFFER is non-nil `log-edit' will jump to that buffer, use it to edit the (set (make-local-variable 'log-edit-callback) callback) (set (make-local-variable 'log-edit-listfun) listfun) (if buffer (set (make-local-variable 'log-edit-parent-buffer) parent)) + (set (make-local-variable 'log-edit-initial-files) (log-edit-files)) (when setup (run-hooks 'log-edit-hook)) (goto-char (point-min)) (push-mark (point-max)) - (set (make-local-variable 'log-edit-initial-files) (log-edit-files)) (message (substitute-command-keys "Press \\[log-edit-done] when you are done editing.")))) |