Move local variables to narrower scopes

These weren't used outside and can be safely moved

Signed-off-by: Benjamin Kramer <benny.kra@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Benjamin Kramer 2009-03-07 21:02:26 +01:00 коммит произвёл Junio C Hamano
Родитель eb3a9dd327
Коммит fd13b21f52
4 изменённых файлов: 8 добавлений и 12 удалений

Просмотреть файл

@ -256,8 +256,7 @@ static void shortlog(const char *name, unsigned char *sha1,
int fmt_merge_msg(int merge_summary, struct strbuf *in, struct strbuf *out) { int fmt_merge_msg(int merge_summary, struct strbuf *in, struct strbuf *out) {
int limit = 20, i = 0, pos = 0; int limit = 20, i = 0, pos = 0;
char line[1024]; char *sep = "";
char *p = line, *sep = "";
unsigned char head_sha1[20]; unsigned char head_sha1[20];
const char *current_branch; const char *current_branch;
@ -271,9 +270,8 @@ int fmt_merge_msg(int merge_summary, struct strbuf *in, struct strbuf *out) {
/* get a line */ /* get a line */
while (pos < in->len) { while (pos < in->len) {
int len; int len;
char *newline; char *newline, *p = in->buf + pos;
p = in->buf + pos;
newline = strchr(p, '\n'); newline = strchr(p, '\n');
len = newline ? newline - p : strlen(p); len = newline ? newline - p : strlen(p);
pos += len + !!newline; pos += len + !!newline;

Просмотреть файл

@ -526,7 +526,6 @@ static void dump_sline(struct sline *sline, unsigned long cnt, int num_parent,
return; /* result deleted */ return; /* result deleted */
while (1) { while (1) {
struct sline *sl = &sline[lno];
unsigned long hunk_end; unsigned long hunk_end;
unsigned long rlines; unsigned long rlines;
const char *hunk_comment = NULL; const char *hunk_comment = NULL;
@ -592,7 +591,7 @@ static void dump_sline(struct sline *sline, unsigned long cnt, int num_parent,
struct lline *ll; struct lline *ll;
int j; int j;
unsigned long p_mask; unsigned long p_mask;
sl = &sline[lno++]; struct sline *sl = &sline[lno++];
ll = (sl->flag & no_pre_delete) ? NULL : sl->lost_head; ll = (sl->flag & no_pre_delete) ? NULL : sl->lost_head;
while (ll) { while (ll) {
fputs(c_old, stdout); fputs(c_old, stdout);

Просмотреть файл

@ -79,18 +79,18 @@ void show_decorations(struct rev_info *opt, struct commit *commit)
*/ */
static int detect_any_signoff(char *letter, int size) static int detect_any_signoff(char *letter, int size)
{ {
char ch, *cp; char *cp;
int seen_colon = 0; int seen_colon = 0;
int seen_at = 0; int seen_at = 0;
int seen_name = 0; int seen_name = 0;
int seen_head = 0; int seen_head = 0;
cp = letter + size; cp = letter + size;
while (letter <= --cp && (ch = *cp) == '\n') while (letter <= --cp && *cp == '\n')
continue; continue;
while (letter <= cp) { while (letter <= cp) {
ch = *cp--; char ch = *cp--;
if (ch == '\n') if (ch == '\n')
break; break;

Просмотреть файл

@ -397,12 +397,11 @@ static int get_common_commits(void)
static char line[1000]; static char line[1000];
unsigned char sha1[20]; unsigned char sha1[20];
char hex[41], last_hex[41]; char hex[41], last_hex[41];
int len;
save_commit_buffer = 0; save_commit_buffer = 0;
for(;;) { for(;;) {
len = packet_read_line(0, line, sizeof(line)); int len = packet_read_line(0, line, sizeof(line));
reset_timeout(); reset_timeout();
if (!len) { if (!len) {
@ -410,7 +409,7 @@ static int get_common_commits(void)
packet_write(1, "NAK\n"); packet_write(1, "NAK\n");
continue; continue;
} }
len = strip(line, len); strip(line, len);
if (!prefixcmp(line, "have ")) { if (!prefixcmp(line, "have ")) {
switch (got_sha1(line+5, sha1)) { switch (got_sha1(line+5, sha1)) {
case -1: /* they have what we do not */ case -1: /* they have what we do not */