Skip to content

Commit 65da088

Browse files
committed
Sync with maint
2 parents f3fb075 + 2d1abfa commit 65da088

File tree

3 files changed

+21
-24
lines changed

3 files changed

+21
-24
lines changed

Documentation/RelNotes/1.7.9.1.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Git v1.7.9.1 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.9
5+
------------------
6+
7+
* Subprocesses spawned from various git programs were often left running
8+
to completion even when the top-level process was killed.
9+
10+
* "git log --first-parent $pathspec" did not stay on the first parent
11+
chain and veered into side branch from which the whole change to the
12+
specified paths came.
13+
14+
* "git push -q" was not sufficiently quiet.
15+
16+
* When "git push" fails to update any refs, the client side did not
17+
report an error correctly to the end user.
18+
19+
Also contains minor fixes and documentation updates.

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,10 @@ Documentation for older releases are available here:
6969
link:RelNotes/1.7.7.1.txt[1.7.7.1],
7070
link:RelNotes/1.7.7.txt[1.7.7].
7171

72-
* link:v1.7.6.5/git.html[documentation for release 1.7.6.5]
72+
* link:v1.7.6.6/git.html[documentation for release 1.7.6.6]
7373

7474
* release notes for
75+
link:RelNotes/1.7.6.6.txt[1.7.6.6],
7576
link:RelNotes/1.7.6.5.txt[1.7.6.5],
7677
link:RelNotes/1.7.6.4.txt[1.7.6.4],
7778
link:RelNotes/1.7.6.3.txt[1.7.6.3],

imap-send.c

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -42,36 +42,13 @@ struct store_conf {
4242
unsigned trash_remote_new:1, trash_only_new:1;
4343
};
4444

45-
struct string_list {
46-
struct string_list *next;
47-
char string[1];
48-
};
49-
50-
struct channel_conf {
51-
struct channel_conf *next;
52-
char *name;
53-
struct store_conf *master, *slave;
54-
char *master_name, *slave_name;
55-
char *sync_state;
56-
struct string_list *patterns;
57-
int mops, sops;
58-
unsigned max_messages; /* for slave only */
59-
};
60-
61-
struct group_conf {
62-
struct group_conf *next;
63-
char *name;
64-
struct string_list *channels;
65-
};
66-
6745
/* For message->status */
6846
#define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */
6947
#define M_DEAD (1<<1) /* expunged */
7048
#define M_FLAGS (1<<2) /* flags fetched */
7149

7250
struct message {
7351
struct message *next;
74-
/* struct string_list *keywords; */
7552
size_t size; /* zero implies "not fetched" */
7653
int uid;
7754
unsigned char flags, status;

0 commit comments

Comments
 (0)