diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-06 11:26:30 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-06 11:26:30 +0200 |
commit | 71b7aa032ee4b1679b3475edd0c3442cb85f4a3a (patch) | |
tree | 0d62488f8e6dda07eabb1e112f3ad36edf17de14 | |
parent | 1e1bfd963b8b3a1381247d6ddb5734f10b0ed837 (diff) | |
parent | 871e6f0348f8e6ee82a9ddcfcf8f88f4c818e4ae (diff) | |
download | egawk-71b7aa032ee4b1679b3475edd0c3442cb85f4a3a.tar.gz egawk-71b7aa032ee4b1679b3475edd0c3442cb85f4a3a.tar.bz2 egawk-71b7aa032ee4b1679b3475edd0c3442cb85f4a3a.zip |
Merge branch 'gawk-4.1-stable'
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | awk.h | 2 | ||||
-rw-r--r-- | gawkapi.c | 2 | ||||
-rw-r--r-- | main.c | 4 | ||||
-rw-r--r-- | symbol.c | 2 |
5 files changed, 11 insertions, 8 deletions
@@ -61,8 +61,7 @@ Changes from 4.1.1 to 4.1.2 4. A number of bugs have been fixed in the MPFR code. -5. Indirect function calls now work for both built-in and - extension functions. +5. Indirect function calls now work for both built-in and extension functions. 6. Built-in functions are now included in FUNCTAB. @@ -86,7 +85,11 @@ Changes from 4.1.1 to 4.1.2 10. Infrastructure upgrades: Automake 1.15, Gettext 0.19.4, Libtool 2.4.5, Bison 3.0.4. -11. POSIX requires that the names of function parameters not be the +11. If a user-defined function has a parameter with the same name as another + user-defined function, it is no longer possible to call the second + function from inside the first. + +12. POSIX requires that the names of function parameters not be the same as any of the special built-in variables and also not conflict with the names of any functions. Gawk has checked for the former since 3.1.7. With --posix, it now also checks for the latter. @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-2014 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-2015 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2012-2014 the Free Software Foundation, Inc. + * Copyright (C) 2012-2015 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-2014 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-2015 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -24,7 +24,7 @@ */ /* FIX THIS BEFORE EVERY RELEASE: */ -#define UPDATE_YEAR 2014 +#define UPDATE_YEAR 2015 #include "awk.h" #include "getopt.h" @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-2013 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-2015 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. |