Docs, remove extraneous whitespace.
This commit is contained in:
parent
d021ee342b
commit
ff2994c721
1 changed files with 7 additions and 1 deletions
8
magit.el
8
magit.el
|
@ -3470,8 +3470,14 @@ This means that the eventual commit does 'git commit --allow-empty'."
|
||||||
(message "Type C-c C-c to %s (C-c C-k to cancel)." operation)))
|
(message "Type C-c C-c to %s (C-c C-k to cancel)." operation)))
|
||||||
|
|
||||||
(defun magit-log-edit (amend-p)
|
(defun magit-log-edit (amend-p)
|
||||||
(interactive "P")
|
"Brings up a buffer to allow editing of commit messages. Given
|
||||||
|
a prefix arg will set the amend flag for the commit buffer.
|
||||||
|
|
||||||
|
If there is a rebase in progress offer the user the option to
|
||||||
|
continue it.
|
||||||
|
|
||||||
|
\\{magit-log-edit-mode-map}"
|
||||||
|
(interactive "P")
|
||||||
(cond ((magit-rebase-info)
|
(cond ((magit-rebase-info)
|
||||||
(if (y-or-n-p "Rebase in progress. Continue it? ")
|
(if (y-or-n-p "Rebase in progress. Continue it? ")
|
||||||
(magit-run-git "rebase" "--continue")))
|
(magit-run-git "rebase" "--continue")))
|
||||||
|
|
Loading…
Reference in a new issue