summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Julliard <julliard@winehq.org>2006-11-03 16:42:17 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-11-04 09:50:26 (GMT)
commit2ac2b19601cd8db8660a8d55647079f1ff4885b1 (patch)
treef5a59be785b45fd6acaa783e6a20034a3e1760ef
parentb8ee51815ad0520b0340c2a594dee1f8de9c7c8a (diff)
downloadgit-2ac2b19601cd8db8660a8d55647079f1ff4885b1.zip
git-2ac2b19601cd8db8660a8d55647079f1ff4885b1.tar.gz
git-2ac2b19601cd8db8660a8d55647079f1ff4885b1.tar.bz2
git.el: Move point after the log message header when entering log-edit mode.
Suggested by Han-Wen Nienhuys. Signed-off-by: Alexandre Julliard <julliard@winehq.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--contrib/emacs/git.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/emacs/git.el b/contrib/emacs/git.el
index 08d6404..6f3b46d 100644
--- a/contrib/emacs/git.el
+++ b/contrib/emacs/git.el
@@ -899,7 +899,8 @@ and returns the process output as a string."
(2 font-lock-function-name-face))
(,(concat "^\\(" (regexp-quote git-log-msg-separator) "\\)$")
(1 font-lock-comment-face)))))
- (log-edit #'git-do-commit nil #'git-log-edit-files buffer))))
+ (log-edit #'git-do-commit nil #'git-log-edit-files buffer)
+ (re-search-forward (regexp-quote (concat git-log-msg-separator "\n")) nil t))))
(defun git-find-file ()
"Visit the current file in its own buffer."