Skip to content

Commit

Permalink
2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mintty committed Apr 4, 2016
1 parent 21149a4 commit 39ca53b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/mintty.1
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ here.

Note that when \fBBoldAsFont\fP is enabled, only bold text in one of the eight
ANSI colours has its colour changed, i.e. bold text without an explicitly
spefified colour is shown with a bold font only. This matches \fBxterm\fP behaviour.
specified colour is shown with a bold font only. This matches \fBxterm\fP behaviour.

This option also controls how the 'half-bright' (or 'dim') text
attribute is displayed: if it is on, half-bright text is
Expand Down
2 changes: 1 addition & 1 deletion src/appinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#define MAJOR_VERSION 2
#define MINOR_VERSION 3
#define PATCH_NUMBER 4
#define PATCH_NUMBER 5
#define BUILD_NUMBER 0

// needed for res.rc
Expand Down
7 changes: 4 additions & 3 deletions src/winmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -998,9 +998,10 @@ confirm_exit(void)
char * msg = malloc(strlen(msg_pre) + 1);
strcpy(msg, msg_pre);
if (procps) {
char line[999]; // use very long input despite narrow msg box
// to avoid high risk of clipping within UTF-8
// and failing the wide character transformation
int ll = 999; // use very long input despite narrow msg box
// to avoid high risk of clipping within UTF-8
// and failing the wide character transformation
char line[ll]; // heap-allocated to prevent #530
bool first = true;
bool filter_tty = false;
while (fgets(line, sizeof line, procps)) {
Expand Down

0 comments on commit 39ca53b

Please sign in to comment.