Skip to content

Commit

Permalink
2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mintty committed Nov 11, 2016
1 parent 01564dc commit 4e0a85d
Show file tree
Hide file tree
Showing 6 changed files with 215 additions and 184 deletions.
162 changes: 95 additions & 67 deletions docs/mintty.1.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/appinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#define WEBSITE "http://mintty.github.io/"

#define MAJOR_VERSION 2
#define MINOR_VERSION 6
#define PATCH_NUMBER 2
#define MINOR_VERSION 7
#define PATCH_NUMBER 0
#define BUILD_NUMBER 0

// needed for res.rc
Expand Down
1 change: 1 addition & 0 deletions src/charset.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ extern int wcscmp(const wchar * s1, const wchar * s2);
// needed for MinGW MSYS

#define wcscpy(tgt, src) memcpy(tgt, src, (wcslen(src) + 1) * sizeof(wchar))
#define wcscat(tgt, src) wcscpy(&tgt[wcslen(tgt)], src)
extern wchar * wcschr(const wchar * s, wchar c);
extern wchar * wcsrchr(const wchar * s, wchar c);
extern int wcsncmp(const wchar * s1, const wchar * s2, int len);
Expand Down

0 comments on commit 4e0a85d

Please sign in to comment.