[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1801-g35e8b9
From: |
Andrew J. Schorr |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1801-g35e8b90 |
Date: |
Fri, 27 May 2016 01:57:51 +0000 (UTC) |
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 35e8b90585d008b21ad7e0dd4d4e7b383cf424bb (commit)
via 9a1809359241c38d2814e287d302a346e85c6ec4 (commit)
from 4d634960a411622cfb2e757d8e98c84f7601e09e (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=35e8b90585d008b21ad7e0dd4d4e7b383cf424bb
commit 35e8b90585d008b21ad7e0dd4d4e7b383cf424bb
Merge: 4d63496 9a18093
Author: Andrew J. Schorr <address@hidden>
Date: Thu May 26 21:57:45 2016 -0400
Merge branch 'gawk-4.1-stable'
diff --cc awk.h
index 213651d,7323b6c..01da08f
--- a/awk.h
+++ b/awk.h
@@@ -1445,13 -1435,15 +1445,13 @@@ extern NODE **r_get_field(NODE *n, Func
/* ext.c */
extern NODE *do_ext(int nargs);
void load_ext(const char *lib_name); /* temporary */
-extern NODE *load_old_ext(SRCFILE *s, const char *init_func, const char
*fini_func, NODE *obj);
extern void close_extensions(void);
#ifdef DYNAMIC
-extern void make_old_builtin(const char *, NODE *(*)(int), int);
extern awk_bool_t make_builtin(const awk_ext_func_t *);
extern NODE *get_argument(int);
- extern NODE *get_actual_argument(NODE *, int, bool, bool);
- #define get_scalar_argument(n, i, opt) get_actual_argument((n), (i), (opt),
false)
- #define get_array_argument(n, i, opt) get_actual_argument((n), (i), (opt),
true)
+ extern NODE *get_actual_argument(NODE *, int, bool);
+ #define get_scalar_argument(n, i) get_actual_argument((n), (i), false)
+ #define get_array_argument(n, i) get_actual_argument((n), (i), true)
#endif
/* field.c */
extern void init_fields(void);
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 9 +++++++++
awk.h | 6 +++---
ext.c | 4 ++--
gawkapi.c | 6 +++---
4 files changed, 17 insertions(+), 8 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1801-g35e8b90,
Andrew J. Schorr <=