зеркало из https://github.com/microsoft/git.git
pretty.c: mark file-local function static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
f1c92c6369
Коммит
cc5711424b
1
commit.h
1
commit.h
|
@ -73,7 +73,6 @@ struct pretty_print_context
|
|||
struct reflog_walk_info *reflog_info;
|
||||
};
|
||||
|
||||
extern int non_ascii(int);
|
||||
extern int has_non_ascii(const char *text);
|
||||
struct rev_info; /* in revision.h, it circularly uses enum cmit_fmt */
|
||||
extern char *reencode_commit_message(const struct commit *commit,
|
||||
|
|
2
pretty.c
2
pretty.c
|
@ -83,7 +83,7 @@ static int get_one_line(const char *msg)
|
|||
}
|
||||
|
||||
/* High bit set, or ISO-2022-INT */
|
||||
int non_ascii(int ch)
|
||||
static int non_ascii(int ch)
|
||||
{
|
||||
return !isascii(ch) || ch == '\033';
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче