fix to backslash quoting of glob pattern characters; allow newly-loaded compspecs to be used in more cases; fixes to the cross-compiling environment; avoid potential overflow in GLOBSORT processing

This commit is contained in:
Chet Ramey
2024-05-20 10:48:44 -04:00
parent b3d8c8a4e7
commit dbd27e54cc
18 changed files with 120 additions and 51 deletions
+6 -2
View File
@@ -18,9 +18,13 @@
along with Bash. If not, see <http://www.gnu.org/licenses/>.
*/
#include <buildconf.h>
/* assume C90/POSIX-1992 compilation environment if cross-compiling */
/* assume C90 compilation environment */
#ifndef CROSS_COMPILING
# include <config.h>
#else
# include <buildconf.h>
#endif
#include <stdio.h>
#include <string.h>