gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] gawk branch, master, updated. gawk-4.1.0-4763-gfe43a264


From: Arnold Robbins
Subject: [SCM] gawk branch, master, updated. gawk-4.1.0-4763-gfe43a264
Date: Thu, 7 Jul 2022 03:17:11 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  fe43a2648d5dd6a3a4347177debeb1086cef4ca4 (commit)
       via  8c6df3835eb7010aa2ca80e4562a1bc179b06a7f (commit)
       via  8c7f9f0b1d073fd907d28278e81cc458a7e20b39 (commit)
       via  628b387658b5704cc711e106459ed3bee37ef600 (commit)
      from  37989990f95388b07ca727d9cda9c0a540d27f9a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=fe43a2648d5dd6a3a4347177debeb1086cef4ca4

commit fe43a2648d5dd6a3a4347177debeb1086cef4ca4
Merge: 8c6df383 8c7f9f0b
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Thu Jul 7 10:16:57 2022 +0300

    Merge branch 'feature/docit'


http://git.sv.gnu.org/cgit/gawk.git/commit/?id=8c6df3835eb7010aa2ca80e4562a1bc179b06a7f

commit 8c6df3835eb7010aa2ca80e4562a1bc179b06a7f
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Thu Jul 7 10:14:44 2022 +0300

    Remove mbsupport.h.

diff --git a/ChangeLog b/ChangeLog
index acfb88f8..bf467059 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2022-07-07         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * mbsupport.h: Removed.
+
 2022-07-06         Arnold D. Robbins     <arnold@skeeve.com>
 
        * README: Updated. Remove mention of DJGPP.
diff --git a/mbsupport.h b/mbsupport.h
deleted file mode 100644
index 51cec3c7..00000000
--- a/mbsupport.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * mbsupport.h --- Localize determination of whether we have multibyte stuff.
- */
-
-/*
- * Copyright (C) 2004, 2005, 2011, 2012, 2015, 2016
- * the Free Software Foundation, Inc.
- *
- * This file is part of GAWK, the GNU implementation of the
- * AWK Programming Language.
- *
- * GAWK is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * GAWK is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
USA
- */
-
-
-#ifdef __DJGPP__
-# undef MB_CUR_MAX
-# define MB_CUR_MAX 1
-
-/* All this glop is for DGJPP */
-
-#define towupper       toupper
-#define towlower       tolower
-#define iswalnum       isalnum
-#define iswalpha       isalpha
-#define iswupper       isupper
-#define iswlower       islower
-
-#define mbrtowc(wcp, s, e, mbs)        (-1)
-#define mbrlen(s, e, mbs)      strlen(s)
-#define wcrtomb(wc, b, mbs)    (-1)
-#define wcslen         strlen
-#define wctob(wc)      (EOF)
-
-#if (__DJGPP__ > 2 || __DJGPP_MINOR__ >= 3)
-# include <ctype.h>
-# include <wchar.h>
-# include <wctype.h>
-#else
-# define mbstate_t     int
-#endif
-
-extern wctype_t wctype(const char *name);
-extern int iswctype(wint_t wc, wctype_t desc);
-extern int wcscoll(const wchar_t *ws1, const wchar_t *ws2);
-#endif

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog             |  10 +
 README                |   4 -
 awk.h                 |   4 +-
 custom.h              |   2 -
 doc/ChangeLog         |   6 +
 doc/gawk.info         | 883 +++++++++++++++++++++++++-------------------------
 doc/gawk.texi         |  17 +-
 doc/gawktexi.in       |  19 +-
 doc/it/ChangeLog      |   4 +
 doc/it/gawktexi.in    |  70 +++-
 doc/wordlist          |   1 -
 doc/wordlist3         |   1 +
 eval.c                |   2 -
 gawkmisc.c            |   6 +-
 io.c                  |  10 +-
 main.c                |   2 -
 mbsupport.h           |  58 ----
 missing_d/ChangeLog   |   4 +
 missing_d/snprintf.c  |   2 +-
 nonposix.h            |  11 +-
 pc/ChangeLog          |   6 +
 pc/GenMakefileTst.awk |  16 +-
 pc/Makefile           |  51 ---
 pc/Makefile.tst       |  70 +---
 pc/config.h           | 104 ++----
 pc/config.sed         | 104 ++----
 pc/gawkmisc.pc        |  59 +---
 pc/getid.c            |   4 +-
 pc/popen.h            |   6 +-
 profile.c             |   5 -
 re.c                  |   2 +-
 replace.c             |   4 -
 test/ChangeLog        |   4 +
 test/Makefile.am      |  11 +-
 test/Makefile.in      |  12 +-
 35 files changed, 624 insertions(+), 950 deletions(-)
 delete mode 100644 mbsupport.h


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]