snapshot of project "mawk", label t20161107

This commit is contained in:
Thomas E. Dickey 2016-11-07 21:51:33 -05:00
parent 1809f12134
commit 3f29f5c5dc
6 changed files with 18 additions and 8 deletions

View File

@ -1,7 +1,11 @@
-- $MawkId: CHANGES,v 1.249 2016/09/30 21:15:51 tom Exp $
-- $MawkId: CHANGES,v 1.251 2016/11/07 21:51:33 tom Exp $
Changes by Thomas E Dickey <dickey@invisible-island.net>
20161107
+ correct sign-extension from 20160615 change to rand() (report by
Christian Neukirchen).
20160930
+ optimize closes on regular expressions to filter out redundant
wildcards, fixing a special case leftover by changes in 20100224

View File

@ -1,4 +1,4 @@
MANIFEST for mawk, version t20160930
MANIFEST for mawk, version t20161107
--------------------------------------------------------------------------------
MANIFEST this file
ACKNOWLEDGMENT acknowledgements

View File

@ -11,7 +11,7 @@ the GNU General Public License, version 2, 1991.
********************************************/
/*
* $MawkId: bi_funct.c,v 1.109 2016/09/30 22:54:45 tom Exp $
* $MawkId: bi_funct.c,v 1.110 2016/11/07 21:43:45 tom Exp $
*/
#include <mawk.h>
@ -837,7 +837,7 @@ bi_rand(CELL *sp)
long value = (long) mawk_rand();
sp++;
sp->type = C_DOUBLE;
sp->dval = ((double) value) / MAWK_RAND_MAX;
sp->dval = ((double) value) / ((unsigned long) MAWK_RAND_MAX);
}
#else
crank(seed);

View File

@ -1,3 +1,9 @@
mawk-cur (1.3.4-20161107) unstable; urgency=low
* maintenance updates
-- Thomas E. Dickey <dickey@invisible-island.net> Mon, 07 Nov 2016 16:36:53 -0500
mawk-cur (1.3.4-20160930) unstable; urgency=low
* maintenance updates

View File

@ -1,8 +1,8 @@
Summary: mawk - pattern scanning and text processing language
%define AppProgram mawk
%define AppVersion 1.3.4
%define AppRelease 20160930
# $MawkId: mawk.spec,v 1.57 2016/09/30 17:10:38 tom Exp $
%define AppRelease 20161107
# $MawkId: mawk.spec,v 1.58 2016/11/07 21:36:53 tom Exp $
Name: %{AppProgram}
Version: %{AppVersion}
Release: %{AppRelease}

View File

@ -11,9 +11,9 @@ the GNU General Public License, version 2, 1991.
*/
/*
* $MawkId: patchlev.h,v 1.82 2016/09/30 17:10:38 tom Exp $
* $MawkId: patchlev.h,v 1.83 2016/11/07 21:36:53 tom Exp $
*/
#define PATCH_BASE 1
#define PATCH_LEVEL 3
#define PATCH_STRING ".4"
#define DATE_STRING "20160930"
#define DATE_STRING "20161107"