-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mingw-w64-i686-wineditline (2.206-1 -> 2.208-1) mingw-w64-x86_64-wineditline (2.206-1 -> 2.208-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
- Loading branch information
Git for Windows Build Agent
committed
Oct 21, 2024
1 parent
331be34
commit 76b6bdd
Showing
39 changed files
with
41 additions
and
25 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ readline.h | |
is part of: | ||
WinEditLine (formerly MinGWEditLine) | ||
Copyright 2010-2020 Paolo Tosco <[email protected]> | ||
Copyright 2010-2022 Paolo Tosco <[email protected]> | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
|
@@ -45,6 +45,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
these defines may be changed | ||
*/ | ||
#define DEFAULT_HISTORY_SIZE 200 /* default number of history entries */ | ||
#define RL_READLINE_VERSION 0x020208 /* 0xMMmmpp where MM is major, mm minor, pp patch version */ | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
|
@@ -108,11 +109,14 @@ extern variables | |
extern char *rl_line_buffer; | ||
extern char *rl_prompt; | ||
extern int rl_point; | ||
extern int rl_end; | ||
extern int rl_attempted_completion_over; | ||
extern int rl_completion_append_character; | ||
extern int rl_readline_version; | ||
extern const char rl_basic_word_break_characters[]; | ||
extern const char *rl_completer_word_break_characters; | ||
extern const char *rl_readline_name; | ||
extern const char *rl_library_version; | ||
extern rl_completion_func_t *rl_attempted_completion_function; | ||
extern rl_compentry_func_t *rl_completion_entry_function; | ||
extern rl_compentryfree_func_t *rl_user_completion_entry_free_function; | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
prefix=/mingw32 | ||
exec_prefix=/mingw32 | ||
exec_prefix=${prefix} | ||
libdir=${prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: wineditline | ||
Description: EditLine API implementation for the native Windows Console | ||
Version: 2.205 | ||
Version: 2.208 | ||
Cflags: -I${includedir}/editline | ||
Libs: -L${libdir} -ledit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
WinEditLine (formerly MinGWEditLine) | ||
Copyright 2010-2020 Paolo Tosco <[email protected]> | ||
Copyright 2010-2021 Paolo Tosco <[email protected]> | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ readline.h | |
is part of: | ||
WinEditLine (formerly MinGWEditLine) | ||
Copyright 2010-2020 Paolo Tosco <[email protected]> | ||
Copyright 2010-2022 Paolo Tosco <[email protected]> | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
|
@@ -45,6 +45,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
these defines may be changed | ||
*/ | ||
#define DEFAULT_HISTORY_SIZE 200 /* default number of history entries */ | ||
#define RL_READLINE_VERSION 0x020208 /* 0xMMmmpp where MM is major, mm minor, pp patch version */ | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
|
@@ -108,11 +109,14 @@ extern variables | |
extern char *rl_line_buffer; | ||
extern char *rl_prompt; | ||
extern int rl_point; | ||
extern int rl_end; | ||
extern int rl_attempted_completion_over; | ||
extern int rl_completion_append_character; | ||
extern int rl_readline_version; | ||
extern const char rl_basic_word_break_characters[]; | ||
extern const char *rl_completer_word_break_characters; | ||
extern const char *rl_readline_name; | ||
extern const char *rl_library_version; | ||
extern rl_completion_func_t *rl_attempted_completion_function; | ||
extern rl_compentry_func_t *rl_completion_entry_function; | ||
extern rl_compentryfree_func_t *rl_user_completion_entry_free_function; | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
prefix=/mingw64 | ||
exec_prefix=/mingw64 | ||
exec_prefix=${prefix} | ||
libdir=${prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: wineditline | ||
Description: EditLine API implementation for the native Windows Console | ||
Version: 2.205 | ||
Version: 2.208 | ||
Cflags: -I${includedir}/editline | ||
Libs: -L${libdir} -ledit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
WinEditLine (formerly MinGWEditLine) | ||
Copyright 2010-2020 Paolo Tosco <[email protected]> | ||
Copyright 2010-2021 Paolo Tosco <[email protected]> | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ any | |
1718204260 | ||
|
||
%INSTALLDATE% | ||
1729134888 | ||
1729480714 | ||
|
||
%PACKAGER% | ||
Johannes Schindelin <[email protected]> | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.