Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
fd5faae3
Commit
fd5faae3
authored
May 08, 2012
by
Vicent Martí
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
message: Cleanup
parent
b1e2ba27
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
src/message.c
+10
-2
No files found.
src/message.c
View file @
fd5faae3
...
...
@@ -6,6 +6,7 @@
*/
#include "message.h"
#include <ctype.h>
static
size_t
line_length_without_trailing_spaces
(
const
char
*
line
,
size_t
len
)
{
...
...
@@ -23,13 +24,20 @@ static size_t line_length_without_trailing_spaces(const char *line, size_t len)
/* see https://github.com/git/git/blob/497215d8811ac7b8955693ceaad0899ecd894ed2/builtin/stripspace.c#L4-67 */
int
git_message_prettify
(
git_buf
*
message_out
,
const
char
*
message
,
int
strip_comments
)
{
const
size_t
message_len
=
strlen
(
message
);
int
consecutive_empty_lines
=
0
;
size_t
i
,
line_length
,
rtrimmed_line_length
;
char
*
next_newline
;
for
(
i
=
0
;
i
<
strlen
(
message
);
i
+=
line_length
)
{
next_newline
=
memchr
(
message
+
i
,
'\n'
,
strlen
(
message
)
-
i
);
line_length
=
next_newline
?
next_newline
-
(
message
+
i
)
+
1
:
strlen
(
message
)
-
i
;
next_newline
=
memchr
(
message
+
i
,
'\n'
,
message_len
-
i
);
if
(
next_newline
!=
NULL
)
{
line_length
=
next_newline
-
(
message
+
i
)
+
1
;
}
else
{
line_length
=
message_len
-
i
;
}
if
(
strip_comments
&&
line_length
&&
message
[
i
]
==
'#'
)
continue
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment