Update to ncurses-6.2-20210213

OBS-URL: https://build.opensuse.org/package/show/Base:System/ncurses?expand=0&rev=531
This commit is contained in:
Dr. Werner Fink 2021-02-15 11:39:21 +00:00 committed by Git OBS Bridge
parent 0d6f4a9f2c
commit 0d3d5e1665
3 changed files with 16 additions and 4 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1d4f4b96c3d65d90902899969985bfd9243ffdc4e22f722eb8d61d1d5e558fc4
size 1920688
oid sha256:f135a42a8004f6ae93f939705667fc823fa162f53474fd821b706ed6a91b5dea
size 1934120

View File

@ -775,7 +775,7 @@
} else if (strstr(env, "screen") != 0
--- ncurses/tinfo/read_entry.c
+++ ncurses/tinfo/read_entry.c 2021-01-11 07:27:32.121419944 +0000
@@ -552,6 +552,7 @@ _nc_read_file_entry(const char *const fi
@@ -551,6 +551,7 @@ _nc_read_file_entry(const char *const fi
FILE *fp = 0;
int code;
@ -783,7 +783,7 @@
if (_nc_access(filename, R_OK) < 0
|| (fp = fopen(filename, BIN_R)) == 0) {
TR(TRACE_DATABASE, ("cannot open terminfo %s (errno=%d)", filename, errno));
@@ -572,6 +573,7 @@ _nc_read_file_entry(const char *const fi
@@ -571,6 +572,7 @@ _nc_read_file_entry(const char *const fi
}
fclose(fp);
}

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Feb 15 11:15:34 UTC 2021 - Dr. Werner Fink <werner@suse.de>
- Add ncurses patch 20210213
+ add test/back_ground.c, to exercise the wide-character background
functions.
+ add a check in _nc_build_wch() in case the background character is a
wide-character, rather than a new part of a multibyte character.
+ improve tracemunch's coverage of form/menu/panel libraries.
+ improve tracemunch's checking/reporting the type for the first
parameter, e.g., "WINDOW*" rather than "#1".
-------------------------------------------------------------------
Tue Feb 9 09:33:11 UTC 2021 - Dr. Werner Fink <werner@suse.de>