Skip to content

Commit

Permalink
Wrap long lines in docstrings in contrib/emacs/git.el
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Jakub Narebski authored and Junio C Hamano committed Jul 14, 2006
1 parent d3ba675 commit 1b3a667
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions contrib/emacs/git.el
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,16 @@

(defcustom git-committer-name nil
"User name to use for commits.
The default is to fall back to the repository config, then to `add-log-full-name' and then to `user-full-name'."
The default is to fall back to the repository config,
then to `add-log-full-name' and then to `user-full-name'."
:group 'git
:type '(choice (const :tag "Default" nil)
(string :tag "Name")))

(defcustom git-committer-email nil
"Email address to use for commits.
The default is to fall back to the git repository config, then to `add-log-mailing-address' and then to `user-mail-address'."
The default is to fall back to the git repository config,
then to `add-log-mailing-address' and then to `user-mail-address'."
:group 'git
:type '(choice (const :tag "Default" nil)
(string :tag "Email")))
Expand All @@ -86,6 +88,7 @@ The default is to fall back to the git repository config, then to `add-log-maili
:group 'git
:type 'string)


(defface git-status-face
'((((class color) (background light)) (:foreground "purple")))
"Git mode face used to highlight added and modified files."
Expand Down Expand Up @@ -149,7 +152,8 @@ The default is to fall back to the git repository config, then to `add-log-maili
(apply #'call-process "git" nil buffer nil args)))

(defun git-call-process-env-string (env &rest args)
"Wrapper for call-process that sets environment strings, and returns the process output as a string."
"Wrapper for call-process that sets environment strings,
and returns the process output as a string."
(with-temp-buffer
(and (eq 0 (apply #' git-call-process-env t env args))
(buffer-string))))
Expand Down

0 comments on commit 1b3a667

Please sign in to comment.