Skip to content

Commit

Permalink
Update 3 packages
Browse files Browse the repository at this point in the history
mingw-w64-i686-sqlite3 (3.44.0-1 -> 3.44.1-1)
mingw-w64-x86_64-sqlite3 (3.44.0-1 -> 3.44.1-1)
vim (9.0.2112-1 -> 9.0.2121-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Nov 26, 2023
1 parent b06d31b commit 9e1e834
Show file tree
Hide file tree
Showing 189 changed files with 255 additions and 150 deletions.
Binary file modified mingw32/bin/dbhash.exe
Binary file not shown.
Binary file modified mingw32/bin/libsqlite3-0.dll
Binary file not shown.
Binary file modified mingw32/bin/showdb.exe
Binary file not shown.
Binary file modified mingw32/bin/showjournal.exe
Binary file not shown.
Binary file modified mingw32/bin/showstat4.exe
Binary file not shown.
Binary file modified mingw32/bin/showwal.exe
Binary file not shown.
Binary file modified mingw32/bin/sqldiff.exe
Binary file not shown.
Binary file modified mingw32/bin/sqlite3.exe
Binary file not shown.
Binary file modified mingw32/bin/sqlite3_analyzer.exe
Binary file not shown.
67 changes: 55 additions & 12 deletions mingw32/include/sqlite3.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ extern "C" {
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
** [sqlite_version()] and [sqlite_source_id()].
*/
#define SQLITE_VERSION "3.44.0"
#define SQLITE_VERSION_NUMBER 3044000
#define SQLITE_SOURCE_ID "2023-11-01 11:23:50 17129ba1ff7f0daf37100ee82d507aef7827cf38de1866e2633096ae6ad8alt1"
#define SQLITE_VERSION "3.44.1"
#define SQLITE_VERSION_NUMBER 3044001
#define SQLITE_SOURCE_ID "2023-11-22 14:18:12 d295f48e8f367b066b881780c98bdf980a1d550397d5ba0b0e49842c95b3alt1"

/*
** CAPI3REF: Run-Time Library Version Numbers
Expand Down Expand Up @@ -5573,20 +5573,35 @@ SQLITE_API int sqlite3_create_window_function(
** </dd>
**
** [[SQLITE_SUBTYPE]] <dt>SQLITE_SUBTYPE</dt><dd>
** The SQLITE_SUBTYPE flag indicates to SQLite that a function may call
** The SQLITE_SUBTYPE flag indicates to SQLite that a function might call
** [sqlite3_value_subtype()] to inspect the sub-types of its arguments.
** Specifying this flag makes no difference for scalar or aggregate user
** functions. However, if it is not specified for a user-defined window
** function, then any sub-types belonging to arguments passed to the window
** function may be discarded before the window function is called (i.e.
** sqlite3_value_subtype() will always return 0).
** This flag instructs SQLite to omit some corner-case optimizations that
** might disrupt the operation of the [sqlite3_value_subtype()] function,
** causing it to return zero rather than the correct subtype().
** SQL functions that invokes [sqlite3_value_subtype()] should have this
** property. If the SQLITE_SUBTYPE property is omitted, then the return
** value from [sqlite3_value_subtype()] might sometimes be zero even though
** a non-zero subtype was specified by the function argument expression.
**
** [[SQLITE_RESULT_SUBTYPE]] <dt>SQLITE_RESULT_SUBTYPE</dt><dd>
** The SQLITE_RESULT_SUBTYPE flag indicates to SQLite that a function might call
** [sqlite3_result_subtype()] to cause a sub-type to be associated with its
** result.
** Every function that invokes [sqlite3_result_subtype()] should have this
** property. If it does not, then the call to [sqlite3_result_subtype()]
** might become a no-op if the function is used as term in an
** [expression index]. On the other hand, SQL functions that never invoke
** [sqlite3_result_subtype()] should avoid setting this property, as the
** purpose of this property is to disable certain optimizations that are
** incompatible with subtypes.
** </dd>
** </dl>
*/
#define SQLITE_DETERMINISTIC 0x000000800
#define SQLITE_DIRECTONLY 0x000080000
#define SQLITE_SUBTYPE 0x000100000
#define SQLITE_INNOCUOUS 0x000200000
#define SQLITE_RESULT_SUBTYPE 0x001000000

/*
** CAPI3REF: Deprecated Functions
Expand Down Expand Up @@ -5783,6 +5798,12 @@ SQLITE_API int sqlite3_value_encoding(sqlite3_value*);
** information can be used to pass a limited amount of context from
** one SQL function to another. Use the [sqlite3_result_subtype()]
** routine to set the subtype for the return value of an SQL function.
**
** Every [application-defined SQL function] that invoke this interface
** should include the [SQLITE_SUBTYPE] property in the text
** encoding argument when the function is [sqlite3_create_function|registered].
** If the [SQLITE_SUBTYPE] property is omitted, then sqlite3_value_subtype()
** might return zero instead of the upstream subtype in some corner cases.
*/
SQLITE_API unsigned int sqlite3_value_subtype(sqlite3_value*);

Expand Down Expand Up @@ -5913,14 +5934,22 @@ SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*);
** <li> ^(when sqlite3_set_auxdata() is invoked again on the same
** parameter)^, or
** <li> ^(during the original sqlite3_set_auxdata() call when a memory
** allocation error occurs.)^ </ul>
** allocation error occurs.)^
** <li> ^(during the original sqlite3_set_auxdata() call if the function
** is evaluated during query planning instead of during query execution,
** as sometimes happens with [SQLITE_ENABLE_STAT4].)^ </ul>
**
** Note the last bullet in particular. The destructor X in
** Note the last two bullets in particular. The destructor X in
** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the
** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata()
** should be called near the end of the function implementation and the
** function implementation should not make any use of P after
** sqlite3_set_auxdata() has been called.
** sqlite3_set_auxdata() has been called. Furthermore, a call to
** sqlite3_get_auxdata() that occurs immediately after a corresponding call
** to sqlite3_set_auxdata() might still return NULL if an out-of-memory
** condition occurred during the sqlite3_set_auxdata() call or if the
** function is being evaluated during query planning rather than during
** query execution.
**
** ^(In practice, auxiliary data is preserved between function calls for
** function parameters that are compile-time constants, including literal
Expand Down Expand Up @@ -6194,6 +6223,20 @@ SQLITE_API int sqlite3_result_zeroblob64(sqlite3_context*, sqlite3_uint64 n);
** higher order bits are discarded.
** The number of subtype bytes preserved by SQLite might increase
** in future releases of SQLite.
**
** Every [application-defined SQL function] that invokes this interface
** should include the [SQLITE_RESULT_SUBTYPE] property in its
** text encoding argument when the SQL function is
** [sqlite3_create_function|registered]. If the [SQLITE_RESULT_SUBTYPE]
** property is omitted from the function that invokes sqlite3_result_subtype(),
** then in some cases the sqlite3_result_subtype() might fail to set
** the result subtype.
**
** If SQLite is compiled with -DSQLITE_STRICT_SUBTYPE=1, then any
** SQL function that invokes the sqlite3_result_subtype() interface
** and that does not have the SQLITE_RESULT_SUBTYPE property will raise
** an error. Future versions of SQLite might enable -DSQLITE_STRICT_SUBTYPE=1
** by default.
*/
SQLITE_API void sqlite3_result_subtype(sqlite3_context*,unsigned int);

Expand Down
Binary file modified mingw32/lib/libsqlite3.a
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/lib/pkgconfig/sqlite3.pc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ includedir=${prefix}/include

Name: SQLite
Description: SQL database engine
Version: 3.44.0
Version: 3.44.1
Libs: -L${libdir} -lsqlite3
Libs.private: -lz
Cflags: -I${includedir}
1 change: 0 additions & 1 deletion mingw32/lib/sqlite3.44.0/pkgIndex.tcl

This file was deleted.

Binary file not shown.
1 change: 1 addition & 0 deletions mingw32/lib/sqlite3.44.1/pkgIndex.tcl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package ifneeded sqlite3 3.44.1 [list load [file join $dir libtclsqlite3[info sharedlibextension]] sqlite3]
2 changes: 1 addition & 1 deletion mingw32/share/sqlite/extensions/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sqlite Extensions - Usage (Sqlite 3.44.0)
# Sqlite Extensions - Usage (Sqlite 3.44.1)

This folder contains shared libraries (dll files) `sqlite3.exe` can be
instructed to load at run-time in order to add functions usable in `sqlite3` SQL code.
Expand Down
Binary file modified mingw32/share/sqlite/extensions/amatch.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/anycollseq.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/appendvfs.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/base64.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/base85.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/basexx.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/blobio.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/btreeinfo.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/carray.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/cksumvfs.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/closure.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/completion.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/compress.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/csv.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/dbdump.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/decimal.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/eval.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/explain.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/fossildelta.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/fuzzer.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/ieee754.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/memstat.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/memvfs.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/mmapwarm.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/nextchar.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/noop.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/normalize.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/pcachetrace.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/percentile.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/prefixes.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/qpvtab.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/randomjson.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/remember.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/rot13.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/scrub.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/series.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/sha1.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/shathree.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/showauth.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/spellfix.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/sqlar.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/stmt.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/templatevtab.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/totype.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/uint.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/unionvtab.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/urifuncs.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/uuid.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/vfslog.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/vfsstat.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/vtablog.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/vtshim.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/wholenumber.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/zipfile.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/zorder.dll
Binary file not shown.
Binary file modified mingw64/bin/dbhash.exe
Binary file not shown.
Binary file modified mingw64/bin/libsqlite3-0.dll
Binary file not shown.
Binary file modified mingw64/bin/showdb.exe
Binary file not shown.
Binary file modified mingw64/bin/showjournal.exe
Binary file not shown.
Binary file modified mingw64/bin/showstat4.exe
Binary file not shown.
Binary file modified mingw64/bin/showwal.exe
Binary file not shown.
Binary file modified mingw64/bin/sqldiff.exe
Binary file not shown.
Binary file modified mingw64/bin/sqlite3.exe
Binary file not shown.
Binary file modified mingw64/bin/sqlite3_analyzer.exe
Binary file not shown.
67 changes: 55 additions & 12 deletions mingw64/include/sqlite3.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ extern "C" {
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
** [sqlite_version()] and [sqlite_source_id()].
*/
#define SQLITE_VERSION "3.44.0"
#define SQLITE_VERSION_NUMBER 3044000
#define SQLITE_SOURCE_ID "2023-11-01 11:23:50 17129ba1ff7f0daf37100ee82d507aef7827cf38de1866e2633096ae6ad8alt1"
#define SQLITE_VERSION "3.44.1"
#define SQLITE_VERSION_NUMBER 3044001
#define SQLITE_SOURCE_ID "2023-11-22 14:18:12 d295f48e8f367b066b881780c98bdf980a1d550397d5ba0b0e49842c95b3alt1"

/*
** CAPI3REF: Run-Time Library Version Numbers
Expand Down Expand Up @@ -5573,20 +5573,35 @@ SQLITE_API int sqlite3_create_window_function(
** </dd>
**
** [[SQLITE_SUBTYPE]] <dt>SQLITE_SUBTYPE</dt><dd>
** The SQLITE_SUBTYPE flag indicates to SQLite that a function may call
** The SQLITE_SUBTYPE flag indicates to SQLite that a function might call
** [sqlite3_value_subtype()] to inspect the sub-types of its arguments.
** Specifying this flag makes no difference for scalar or aggregate user
** functions. However, if it is not specified for a user-defined window
** function, then any sub-types belonging to arguments passed to the window
** function may be discarded before the window function is called (i.e.
** sqlite3_value_subtype() will always return 0).
** This flag instructs SQLite to omit some corner-case optimizations that
** might disrupt the operation of the [sqlite3_value_subtype()] function,
** causing it to return zero rather than the correct subtype().
** SQL functions that invokes [sqlite3_value_subtype()] should have this
** property. If the SQLITE_SUBTYPE property is omitted, then the return
** value from [sqlite3_value_subtype()] might sometimes be zero even though
** a non-zero subtype was specified by the function argument expression.
**
** [[SQLITE_RESULT_SUBTYPE]] <dt>SQLITE_RESULT_SUBTYPE</dt><dd>
** The SQLITE_RESULT_SUBTYPE flag indicates to SQLite that a function might call
** [sqlite3_result_subtype()] to cause a sub-type to be associated with its
** result.
** Every function that invokes [sqlite3_result_subtype()] should have this
** property. If it does not, then the call to [sqlite3_result_subtype()]
** might become a no-op if the function is used as term in an
** [expression index]. On the other hand, SQL functions that never invoke
** [sqlite3_result_subtype()] should avoid setting this property, as the
** purpose of this property is to disable certain optimizations that are
** incompatible with subtypes.
** </dd>
** </dl>
*/
#define SQLITE_DETERMINISTIC 0x000000800
#define SQLITE_DIRECTONLY 0x000080000
#define SQLITE_SUBTYPE 0x000100000
#define SQLITE_INNOCUOUS 0x000200000
#define SQLITE_RESULT_SUBTYPE 0x001000000

/*
** CAPI3REF: Deprecated Functions
Expand Down Expand Up @@ -5783,6 +5798,12 @@ SQLITE_API int sqlite3_value_encoding(sqlite3_value*);
** information can be used to pass a limited amount of context from
** one SQL function to another. Use the [sqlite3_result_subtype()]
** routine to set the subtype for the return value of an SQL function.
**
** Every [application-defined SQL function] that invoke this interface
** should include the [SQLITE_SUBTYPE] property in the text
** encoding argument when the function is [sqlite3_create_function|registered].
** If the [SQLITE_SUBTYPE] property is omitted, then sqlite3_value_subtype()
** might return zero instead of the upstream subtype in some corner cases.
*/
SQLITE_API unsigned int sqlite3_value_subtype(sqlite3_value*);

Expand Down Expand Up @@ -5913,14 +5934,22 @@ SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*);
** <li> ^(when sqlite3_set_auxdata() is invoked again on the same
** parameter)^, or
** <li> ^(during the original sqlite3_set_auxdata() call when a memory
** allocation error occurs.)^ </ul>
** allocation error occurs.)^
** <li> ^(during the original sqlite3_set_auxdata() call if the function
** is evaluated during query planning instead of during query execution,
** as sometimes happens with [SQLITE_ENABLE_STAT4].)^ </ul>
**
** Note the last bullet in particular. The destructor X in
** Note the last two bullets in particular. The destructor X in
** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the
** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata()
** should be called near the end of the function implementation and the
** function implementation should not make any use of P after
** sqlite3_set_auxdata() has been called.
** sqlite3_set_auxdata() has been called. Furthermore, a call to
** sqlite3_get_auxdata() that occurs immediately after a corresponding call
** to sqlite3_set_auxdata() might still return NULL if an out-of-memory
** condition occurred during the sqlite3_set_auxdata() call or if the
** function is being evaluated during query planning rather than during
** query execution.
**
** ^(In practice, auxiliary data is preserved between function calls for
** function parameters that are compile-time constants, including literal
Expand Down Expand Up @@ -6194,6 +6223,20 @@ SQLITE_API int sqlite3_result_zeroblob64(sqlite3_context*, sqlite3_uint64 n);
** higher order bits are discarded.
** The number of subtype bytes preserved by SQLite might increase
** in future releases of SQLite.
**
** Every [application-defined SQL function] that invokes this interface
** should include the [SQLITE_RESULT_SUBTYPE] property in its
** text encoding argument when the SQL function is
** [sqlite3_create_function|registered]. If the [SQLITE_RESULT_SUBTYPE]
** property is omitted from the function that invokes sqlite3_result_subtype(),
** then in some cases the sqlite3_result_subtype() might fail to set
** the result subtype.
**
** If SQLite is compiled with -DSQLITE_STRICT_SUBTYPE=1, then any
** SQL function that invokes the sqlite3_result_subtype() interface
** and that does not have the SQLITE_RESULT_SUBTYPE property will raise
** an error. Future versions of SQLite might enable -DSQLITE_STRICT_SUBTYPE=1
** by default.
*/
SQLITE_API void sqlite3_result_subtype(sqlite3_context*,unsigned int);

Expand Down
Binary file modified mingw64/lib/libsqlite3.a
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw64/lib/pkgconfig/sqlite3.pc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ includedir=${prefix}/include

Name: SQLite
Description: SQL database engine
Version: 3.44.0
Version: 3.44.1
Libs: -L${libdir} -lsqlite3
Libs.private: -lz
Cflags: -I${includedir}
1 change: 0 additions & 1 deletion mingw64/lib/sqlite3.44.0/pkgIndex.tcl

This file was deleted.

Binary file not shown.
1 change: 1 addition & 0 deletions mingw64/lib/sqlite3.44.1/pkgIndex.tcl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package ifneeded sqlite3 3.44.1 [list load [file join $dir libtclsqlite3[info sharedlibextension]] sqlite3]
2 changes: 1 addition & 1 deletion mingw64/share/sqlite/extensions/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sqlite Extensions - Usage (Sqlite 3.44.0)
# Sqlite Extensions - Usage (Sqlite 3.44.1)

This folder contains shared libraries (dll files) `sqlite3.exe` can be
instructed to load at run-time in order to add functions usable in `sqlite3` SQL code.
Expand Down
Binary file modified mingw64/share/sqlite/extensions/amatch.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/anycollseq.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/appendvfs.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/base64.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/base85.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/basexx.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/blobio.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/btreeinfo.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/carray.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/cksumvfs.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/closure.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/completion.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/compress.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/csv.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/dbdump.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/decimal.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/eval.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/explain.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/fossildelta.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/fuzzer.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/ieee754.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/memstat.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/memvfs.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/mmapwarm.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/nextchar.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/noop.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/normalize.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/pcachetrace.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/percentile.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/prefixes.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/qpvtab.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/randomjson.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/remember.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/rot13.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/scrub.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/series.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/sha1.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/shathree.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/showauth.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/spellfix.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/sqlar.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/stmt.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/templatevtab.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/totype.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/uint.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/unionvtab.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/urifuncs.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/uuid.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/vfslog.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/vfsstat.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/vtablog.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/vtshim.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/wholenumber.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/zipfile.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/zorder.dll
Binary file not shown.
Binary file modified usr/bin/ex.exe
Binary file not shown.
Binary file modified usr/bin/rview.exe
Binary file not shown.
Binary file modified usr/bin/rvim.exe
Binary file not shown.
Binary file modified usr/bin/view.exe
Binary file not shown.
Binary file modified usr/bin/vim.exe
Binary file not shown.
Binary file modified usr/bin/vimdiff.exe
Binary file not shown.
Binary file modified usr/bin/xxd.exe
Binary file not shown.
26 changes: 13 additions & 13 deletions usr/share/vim/vim90/autoload/netrw.vim
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
" netrw.vim: Handles file transfer and remote directory listing across
" AUTOLOAD SECTION
" Date: May 03, 2023
" Version: 173
" Version: 173a
" Last Change:
" 2023 Nov 21 by Vim Project: ignore wildignore when expanding $COMSPEC (v173a)
" 2023 Nov 22 by Vim Project: fix handling of very long filename on longlist style (v173a)
" Maintainer: Charles E Campbell <[email protected]>
" GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim
" Copyright: Copyright (C) 2016 Charles E. Campbell {{{1
Expand Down Expand Up @@ -400,7 +403,7 @@ if !exists("g:netrw_localcopycmd")
if g:netrw_cygwin
let g:netrw_localcopycmd= "cp"
else
let g:netrw_localcopycmd = expand("$COMSPEC")
let g:netrw_localcopycmd = expand("$COMSPEC", v:true)
let g:netrw_localcopycmdopt= " /c copy"
endif
elseif has("unix") || has("macunix")
Expand All @@ -415,7 +418,7 @@ if !exists("g:netrw_localcopydircmd")
let g:netrw_localcopydircmd = "cp"
let g:netrw_localcopydircmdopt= " -R"
else
let g:netrw_localcopydircmd = expand("$COMSPEC")
let g:netrw_localcopydircmd = expand("$COMSPEC", v:true)
let g:netrw_localcopydircmdopt= " /c xcopy /e /c /h /i /k"
endif
elseif has("unix")
Expand All @@ -436,7 +439,7 @@ if has("win32") || has("win95") || has("win64") || has("win16")
if g:netrw_cygwin
call s:NetrwInit("g:netrw_localmkdir","mkdir")
else
let g:netrw_localmkdir = expand("$COMSPEC")
let g:netrw_localmkdir = expand("$COMSPEC", v:true)
let g:netrw_localmkdiropt= " /c mkdir"
endif
else
Expand All @@ -452,7 +455,7 @@ if !exists("g:netrw_localmovecmd")
if g:netrw_cygwin
let g:netrw_localmovecmd= "mv"
else
let g:netrw_localmovecmd = expand("$COMSPEC")
let g:netrw_localmovecmd = expand("$COMSPEC", v:true)
let g:netrw_localmovecmdopt= " /c move"
endif
elseif has("unix") || has("macunix")
Expand Down Expand Up @@ -11185,16 +11188,16 @@ fun! s:LocalListing()
" call Decho("pfile <".pfile.">",'~'.expand("<slnum>"))

if w:netrw_liststyle == s:LONGLIST
let longfile= printf("%-".g:netrw_maxfilenamelen."S",pfile)
let sz = getfsize(filename)
let szlen = 15 - (strdisplaywidth(longfile) - g:netrw_maxfilenamelen)
let szlen = (szlen > 0) ? szlen : 0
let fsz = printf("%".szlen."S",sz)

if g:netrw_sizestyle =~# "[hH]"
let sz= s:NetrwHumanReadable(sz)
endif
let longfile= printf("%-".g:netrw_maxfilenamelen."S",pfile)
let pfile = longfile." ".sz." ".strftime(g:netrw_timefmt,getftime(filename))
let fsz = printf("%".szlen."S",sz)
let pfile = longfile." ".fsz." ".strftime(g:netrw_timefmt,getftime(filename))
" call Decho("longlist support: sz=".sz." fsz=".fsz,'~'.expand("<slnum>"))
endif

Expand All @@ -11204,7 +11207,7 @@ fun! s:LocalListing()
" call Decho("implementing g:netrw_sort_by=".g:netrw_sort_by." (time)")
" call Decho("getftime(".filename.")=".getftime(filename),'~'.expand("<slnum>"))
let t = getftime(filename)
let ft = strpart("000000000000000000",1,18-strlen(t)).t
let ft = printf("%018d",t)
" call Decho("exe NetrwKeepj put ='".ft.'/'.pfile."'",'~'.expand("<slnum>"))
let ftpfile= ft.'/'.pfile
sil! NetrwKeepj put=ftpfile
Expand All @@ -11214,10 +11217,7 @@ fun! s:LocalListing()
" call Decho("implementing g:netrw_sort_by=".g:netrw_sort_by." (size)")
" call Decho("getfsize(".filename.")=".getfsize(filename),'~'.expand("<slnum>"))
let sz = getfsize(filename)
if g:netrw_sizestyle =~# "[hH]"
let sz= s:NetrwHumanReadable(sz)
endif
let fsz = strpart("000000000000000000",1,18-strlen(sz)).sz
let fsz = printf("%018d",sz)
" call Decho("exe NetrwKeepj put ='".fsz.'/'.filename."'",'~'.expand("<slnum>"))
let fszpfile= fsz.'/'.pfile
sil! NetrwKeepj put =fszpfile
Expand Down
Loading

0 comments on commit 9e1e834

Please sign in to comment.