Skip to content

Commit

Permalink
Expose the has_non_ascii() function
Browse files Browse the repository at this point in the history
This function is useful outside of log-tree.c, too.

Signed-off-by: Johannes Schindelin <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
dscho authored and gitster committed Aug 10, 2009
1 parent 5dc36a5 commit 28e9cf6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions commit.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ enum cmit_fmt {
};

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,
const char **encoding_p);
Expand Down
12 changes: 0 additions & 12 deletions log-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,18 +168,6 @@ static unsigned int digits_in_number(unsigned int number)
return result;
}

static int has_non_ascii(const char *s)
{
int ch;
if (!s)
return 0;
while ((ch = *s++) != '\0') {
if (non_ascii(ch))
return 1;
}
return 0;
}

void get_patch_filename(struct commit *commit, int nr, const char *suffix,
struct strbuf *buf)
{
Expand Down
12 changes: 12 additions & 0 deletions pretty.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,18 @@ int non_ascii(int ch)
return !isascii(ch) || ch == '\033';
}

int has_non_ascii(const char *s)
{
int ch;
if (!s)
return 0;
while ((ch = *s++) != '\0') {
if (non_ascii(ch))
return 1;
}
return 0;
}

static int is_rfc2047_special(char ch)
{
return (non_ascii(ch) || (ch == '=') || (ch == '?') || (ch == '_'));
Expand Down

0 comments on commit 28e9cf6

Please sign in to comment.