From: Glenn Morris Date: Wed, 24 Mar 2010 03:30:53 +0000 (-0700) Subject: * vc-dispatcher.el (vc-start-logentry): Doc fix. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~669 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=549f324afb7503a6fbbd441a065db71f25499c17;p=emacs.git * vc-dispatcher.el (vc-start-logentry): Doc fix. (log-view-process-buffer, log-edit-extra-flags): Declare. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b09b479b76d..b1b73612b3c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-03-24 Glenn Morris + * vc-dispatcher.el (vc-start-logentry): Doc fix. + (log-view-process-buffer, log-edit-extra-flags): Declare. + * log-edit.el (log-edit-before-checkin-process): Doc fix. * cedet/semantic/bovine/c.el (semantic-c-describe-environment): diff --git a/lisp/vc-dispatcher.el b/lisp/vc-dispatcher.el index 721bbb38fe5..80a0f5dddcd 100644 --- a/lisp/vc-dispatcher.el +++ b/lisp/vc-dispatcher.el @@ -539,8 +539,9 @@ contents of the log entry buffer. If COMMENT is a string and INITIAL-CONTENTS is nil, do action immediately as if the user had entered COMMENT. If COMMENT is t, also do action immediately with an empty comment. Remember the file's buffer in `vc-parent-buffer' -\(current one if no file). AFTER-HOOK specifies the local value -for `vc-log-after-operation-hook'." +\(current one if no file). Puts the log-entry buffer in major-mode +MODE, defaulting to `log-edit-mode' if MODE is nil. +AFTER-HOOK specifies the local value for `vc-log-after-operation-hook'." (let ((parent (if (vc-dispatcher-browsing) ;; If we are called from a directory browser, the parent buffer is @@ -569,6 +570,9 @@ for `vc-log-after-operation-hook'." (vc-finish-logentry (eq comment t))))) (declare-function vc-dir-move-to-goal-column "vc-dir" ()) +;; vc-finish-logentry is called from a log-edit buffer (see above). +(declare-function log-view-process-buffer "log-edit" ()) +(defvar log-edit-extra-flags) (defun vc-finish-logentry (&optional nocomment) "Complete the operation implied by the current log entry.