index
:
egawk
master
Enhanced GNU Awk
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Collapse
)
Author
Age
Files
Lines
*
Document string termination in header files and remove no-longer-needed ↵
Andrew J. Schorr
2016-07-06
12
-58
/
+55
|
|
|
|
string termination logic in various places.
*
Now that all fields are NUL-terminated, we can eliminate $n copying in the ↵
Andrew J. Schorr
2016-07-06
2
-6
/
+12
|
|
|
|
interpreter.
*
Terminate all $n field values with a '\0' character.
Andrew J. Schorr
2016-07-06
2
-41
/
+152
|
*
Renumber NODE flags to eliminate gap created when FIELD was removed.
Andrew J. Schorr
2016-07-06
2
-11
/
+15
|
*
Fix minor bug in last patch to rebuild_record for corner case that never occurs.
Andrew J. Schorr
2016-07-05
2
-0
/
+6
|
*
When rebuilding $0, do not bother to copy malloc'ed nodes.
Andrew J. Schorr
2016-07-05
2
-32
/
+26
|
*
Remove FIELD flag, since it is the inverse of the MALLOC flag.
Andrew J. Schorr
2016-07-05
7
-16
/
+47
|
*
Unify force_string handling of CONVFMT and OFMT.
Andrew J. Schorr
2016-07-04
3
-10
/
+26
|
*
It is OK to use a strnum as a string array subscript, since we now respect ↵
Andrew J. Schorr
2016-07-04
8
-8
/
+52
|
|
|
|
the string value.
*
Revert warning message until I'm certain that that flag combo is invalid.
Andrew J. Schorr
2016-07-03
2
-5
/
+7
|
*
Fix bug where STRING flag was disabled during record reconstruction, and add ↵
Andrew J. Schorr
2016-07-03
9
-3
/
+41
|
|
|
|
test case.
*
Merge branch 'master' into feature/fixtype
Arnold D. Robbins
2016-07-01
4
-3
/
+11
|
\
|
*
Merge branch 'gawk-4.1-stable'
Arnold D. Robbins
2016-07-01
4
-3
/
+11
|
|
\
|
|
*
Allow -d- to print to stdout.
Arnold D. Robbins
2016-07-01
4
-3
/
+11
|
|
|
*
|
|
Merge branch 'master' into feature/fixtype
Arnold D. Robbins
2016-07-01
6
-1
/
+17
|
\
|
|
|
*
|
Fix test suite after merge from master.
Arnold D. Robbins
2016-07-01
3
-3
/
+3
|
|
|
|
*
|
Merge branch 'gawk-4.1-stable'
Arnold D. Robbins
2016-07-01
6
-1
/
+17
|
|
\
|
|
|
*
Add FUNCTAB and SYMTAB to variables dumped with -d.
Arnold D. Robbins
2016-07-01
6
-1
/
+17
|
|
|
*
|
|
Merge branch 'master' into feature/fixtype
Arnold D. Robbins
2016-07-01
11
-19
/
+56
|
\
|
|
|
*
|
Merge branch 'gawk-4.1-stable'
Arnold D. Robbins
2016-07-01
13
-21
/
+58
|
|
\
|
|
|
*
Minor fixes in gawkapi.c.
Arnold D. Robbins
2016-07-01
2
-3
/
+7
|
|
|
|
|
*
Minor portability fixes in some of the extensions.
Arnold D. Robbins
2016-07-01
3
-3
/
+15
|
|
|
|
|
*
Remove writes to stderr in arrayind1 test.
Arnold D. Robbins
2016-07-01
3
-10
/
+10
|
|
|
|
|
*
Update pc/Makefile.tst.
Arnold D. Robbins
2016-07-01
2
-3
/
+16
|
|
|
|
|
*
Minor fixes for stftmt uses.
Arnold D. Robbins
2016-07-01
4
-3
/
+11
|
|
|
*
|
|
Improve r_force_number coding style.
Andrew J. Schorr
2016-06-30
2
-9
/
+11
|
|
|
*
|
|
Merge branch 'feature/fixtype' of ssh://git.sv.gnu.org/srv/git/gawk into ↵
Andrew J. Schorr
2016-06-30
2
-2
/
+7
|
\
\
\
|
|
|
|
|
|
|
|
|
|
|
|
feature/fixtype
|
*
|
|
Merge branch 'master' into feature/fixtype
Arnold D. Robbins
2016-06-30
2
-2
/
+7
|
|
\
|
|
|
|
*
|
Typo fix in the man page.
Arnold D. Robbins
2016-06-30
2
-2
/
+7
|
|
|
|
*
|
|
|
Use new STFMT_UNUSED define to improve code clarity, and fix some minor ↵
Andrew J. Schorr
2016-06-30
11
-15
/
+51
|
/
/
/
|
|
|
|
|
|
|
|
|
stfmt issues.
*
|
|
Optimize r_force_number and fix obscure bug in get_ieee_magic_val.
Andrew J. Schorr
2016-06-29
2
-18
/
+31
|
|
|
*
|
|
Add comment to gawkapi.h about string termination.
Andrew J. Schorr
2016-06-27
2
-0
/
+11
|
|
|
*
|
|
Add comment to awk.h regarding the potential lack of NUL-termination for ↵
Andrew J. Schorr
2016-06-27
2
-0
/
+12
|
|
|
|
|
|
|
|
|
|
|
|
strings.
*
|
|
Protect against an improper call to free in r_format_val.
Andrew J. Schorr
2016-06-27
2
-1
/
+8
|
|
|
*
|
|
When checking for trailing spaces in numeric strings, avoid running off the end.
Andrew J. Schorr
2016-06-26
3
-2
/
+8
|
|
|
*
|
|
Simplify do_print logic to eliminate an unnecessary test for the value's type.
Andrew J. Schorr
2016-06-26
2
-2
/
+7
|
|
|
*
|
|
Do not use OFMT or CONVFMT for strnum values.
Andrew J. Schorr
2016-06-26
4
-11
/
+21
|
|
|
*
|
|
Minor improvements after Andy's reworking of stuff.
Arnold D. Robbins
2016-06-26
7
-72
/
+109
|
|
|
*
|
|
Merge branch 'master' into feature/fixtype
Arnold D. Robbins
2016-06-26
1
-0
/
+12
|
\
|
|
|
*
|
Merge branch 'gawk-4.1-stable'
Arnold D. Robbins
2016-06-26
3
-3
/
+16
|
|
\
|
|
|
*
Fix handling of MAYBE_NUM; fixes change of 2015-08-25.
Arnold D. Robbins
2016-06-26
3
-3
/
+16
|
|
|
*
|
|
Improve strnum test case to check both OFMT and CONVFMT formatting.
Andrew J. Schorr
2016-06-22
5
-7
/
+34
|
|
|
*
|
|
Call fixtype in a few more places to make sure we check types properly.
Andrew J. Schorr
2016-06-20
8
-7
/
+35
|
|
|
*
|
|
Forgot got commit the ChangeLog entry from the last patch.
Andrew J. Schorr
2016-06-18
1
-0
/
+4
|
|
|
*
|
|
Fix typo in comment.
Andrew J. Schorr
2016-06-18
1
-1
/
+1
|
|
|
*
|
|
Merge branch 'master' into feature/fixtype
Arnold D. Robbins
2016-06-17
3
-290
/
+1857
|
\
|
|
|
*
|
Merge branch 'gawk-4.1-stable'
Arnold D. Robbins
2016-06-17
3
-290
/
+1857
|
|
\
|
|
|
*
Bump version for test tarball.
Arnold D. Robbins
2016-06-17
4
-51
/
+51
|
|
|
|
|
*
VMS vmstest.com update
John Malmberg
2016-06-16
2
-253
/
+1820
|
|
|
*
|
|
Merge branch 'master' into feature/fixtype
Arnold D. Robbins
2016-06-16
2
-0
/
+17
|
\
|
|
[next]