]> granicus.if.org Git - jq/log
jq
9 years agofix references to --color-output 865/head
Evan Zacks [Fri, 24 Jul 2015 14:18:12 +0000 (10:18 -0400)]
fix references to --color-output

9 years agoUpdated v1.3 filenames
Thomas R. Hall [Fri, 17 Oct 2014 09:45:24 +0000 (16:45 +0700)]
Updated v1.3 filenames

The jq 1.3 filenames for Windows are jq-1.3.exe instead of jq.exe. Updated these so they no longer return a 404.

9 years agoCopy over changes made to gh-pages directly
David Tolnay [Fri, 24 Jul 2015 04:26:18 +0000 (21:26 -0700)]
Copy over changes made to gh-pages directly

This includes the following commits from the gh-pages branch:

 - 63e80b8
 - d24a397
 - 9796cd6
 - ee21707
 - ccb0f1d
 - 200e6b3
 - 64134c0
 - 57152d2
 - 8ffbfa3

9 years agoResolve remaining shift/reduce conflicts involving '?' 858/head
David Tolnay [Sun, 19 Jul 2015 06:44:06 +0000 (23:44 -0700)]
Resolve remaining shift/reduce conflicts involving '?'

By lowering the precedence of rules that should never use
the generic Exp '?' rule.

9 years agoResolve shift/reduce conflict of 'def' vs '|'
David Tolnay [Sun, 19 Jul 2015 04:57:20 +0000 (21:57 -0700)]
Resolve shift/reduce conflict of 'def' vs '|'

This was an important conflict. In the following expression:

    def a: 0; . | a

Bison needs to decide between these two equally valid
parses:

    (def a: 0; .) | a
    def a: 0; (. | a)

For jq we want the second one, because the first results in
"a/0 is not defined". In the current parser the first parse
is a reduce and the second parse is a shift. Since Bison
prefers to shift in shift/reduce conflicts, we accidentally
got the correct behavior.

This commit adds a precedence level FUNCDEF which is lower
precedence than '|', meaning we explicitly choose the
correct parse.

Of course many unit tests already cover this case, but I
added one specifically for it.

9 years agoClean up trailing whitespace
David Tolnay [Sun, 19 Jul 2015 16:36:16 +0000 (09:36 -0700)]
Clean up trailing whitespace

9 years agoUse =, not ==, for shell tests
Nicolas Williams [Sun, 19 Jul 2015 02:12:08 +0000 (21:12 -0500)]
Use =, not ==, for shell tests

9 years agotravis has whitelisted libonig-dev
David Tolnay [Fri, 10 Jul 2015 20:10:06 +0000 (13:10 -0700)]
travis has whitelisted libonig-dev

https://github.com/travis-ci/travis-ci/issues/4123

9 years agoinput_filename should never empty
Nicolas Williams [Fri, 10 Jul 2015 17:32:11 +0000 (12:32 -0500)]
input_filename should never empty

9 years agoUpdate AUTHORS
Nicolas Williams [Fri, 10 Jul 2015 17:28:21 +0000 (12:28 -0500)]
Update AUTHORS

9 years agoUpdate NEWS
Nicolas Williams [Fri, 10 Jul 2015 16:26:29 +0000 (11:26 -0500)]
Update NEWS

9 years agoUpdate ChangeLog
Nicolas Williams [Fri, 10 Jul 2015 16:12:24 +0000 (11:12 -0500)]
Update ChangeLog

9 years agoUse `include` for import into namespace
Nicolas Williams [Fri, 10 Jul 2015 15:11:51 +0000 (10:11 -0500)]
Use `include` for import into namespace

9 years agoSimplify import docs
Nicolas Williams [Fri, 10 Jul 2015 15:11:30 +0000 (10:11 -0500)]
Simplify import docs

9 years agoFix typo in docs
Nicolas Williams [Fri, 10 Jul 2015 15:10:28 +0000 (10:10 -0500)]
Fix typo in docs

9 years agoDockerfile reorganized
James Andariese [Tue, 7 Jul 2015 01:55:44 +0000 (18:55 -0700)]
Dockerfile reorganized

* Remove excess layer creation
  This is an antipattern in Docker.
* Remove build tools once build is complete
  Leaving them around is not necessary and expands the image size 5x
* Make check works with libonig installed
* Compiles statically (needs libonig to be built rather than installed)
* Valgrind doesn't work with the use of TLS in jq so it's disabled -- this
  might be a FIXME situation; I'm not familiar enough with valgrind to
  say whether this is expected
* Make entrypoint be the jq binary so that the image can also be used
  to run jq in environments where you don't want to or can't install
  jq (such as CoreOS).

9 years agoFixing missing D in LIBM_DDD_NO macro name 844/head
Mike Fletcher [Thu, 9 Jul 2015 18:59:37 +0000 (14:59 -0400)]
Fixing missing D in LIBM_DDD_NO macro name

9 years agoMake jq.h usable from C++ 841/head
David Tolnay [Sat, 4 Jul 2015 21:56:07 +0000 (14:56 -0700)]
Make jq.h usable from C++

Previously, with clang++:
jq.h:46:37: error: typedef redefinition with different
      types ('struct jq_util_input_state *' vs 'jq_util_input_state')

With g++:
jq.h:46:37: error: conflicting declaration
      ‘typedef struct jq_util_input_state* jq_util_input_state’

This typedef was added to libjq by commit 0d41447 which was
after the 1.4 release, so although it is a public API, this
is not a backcompat break because it has never been in a
release.

Specifying the "*" at all uses of jq_util_input_state is
slightly tedious, but jq_state already works that way, so at
least it will be consistent.

9 years agoFix Windows build
Nicolas Williams [Sat, 4 Jul 2015 18:45:24 +0000 (13:45 -0500)]
Fix Windows build

9 years agoDocument math support
Nicolas Williams [Sat, 4 Jul 2015 02:19:01 +0000 (21:19 -0500)]
Document math support

9 years agoRemove `pow10` for now; CHECK_MATH_FUNC needs work
Nicolas Williams [Sat, 4 Jul 2015 02:13:13 +0000 (21:13 -0500)]
Remove `pow10` for now; CHECK_MATH_FUNC needs work

The CHECK_MATH_FUNC() m4 macro needs work.  It should use
AC_RUN_IFELSE(), not just AC_LINK_IFELSE(), and it should #define
_GNU_SOURCE and/or other such feature macros in the prologue to get
non-standard math functions (alternatvely jq should only support
standard math functions).

9 years agodocs and diagram for exec_stack 840/head
David Tolnay [Fri, 3 Jul 2015 06:46:31 +0000 (23:46 -0700)]
docs and diagram for exec_stack

9 years agostrftime wrong day-of-week (fix #838)
David Tolnay [Tue, 30 Jun 2015 15:24:26 +0000 (08:24 -0700)]
strftime wrong day-of-week (fix #838)

9 years agoDocument --run-tests
Nicolas Williams [Sun, 28 Jun 2015 18:57:02 +0000 (13:57 -0500)]
Document --run-tests

9 years agoMake --run-tests' jv_test() quiet
Nicolas Williams [Sun, 28 Jun 2015 18:39:32 +0000 (13:39 -0500)]
Make --run-tests' jv_test() quiet

9 years agoMake --run-tests less verbose by default
Nicolas Williams [Sun, 28 Jun 2015 04:31:44 +0000 (23:31 -0500)]
Make --run-tests less verbose by default

Adding --debug-trace or --debug-dump-disasm before --run-tests now makes
it verbose.

9 years agoAdd more basic number tests
Nicolas Williams [Sun, 28 Jun 2015 04:15:16 +0000 (23:15 -0500)]
Add more basic number tests

9 years agoAdd `pow`, better libm detection (fix #443)
Nicolas Williams [Sun, 28 Jun 2015 04:14:46 +0000 (23:14 -0500)]
Add `pow`, better libm detection (fix #443)

9 years agogcov exclusions 836/head
David Tolnay [Sat, 27 Jun 2015 20:48:54 +0000 (13:48 -0700)]
gcov exclusions

9 years agoflag to enable gcov and coveralls 834/head
David Tolnay [Sat, 27 Jun 2015 17:16:13 +0000 (10:16 -0700)]
flag to enable gcov and coveralls

9 years agoadd configure option to run tests without valgrind
David Tolnay [Sat, 27 Jun 2015 16:52:12 +0000 (09:52 -0700)]
add configure option to run tests without valgrind

9 years agoFix braino in merging the previous commit
Nicolas Williams [Sat, 27 Jun 2015 18:00:41 +0000 (13:00 -0500)]
Fix braino in merging the previous commit

There's a mantest that shows how to use `env`.  Well, we need to set the
env var as expected then, else it will fail.

9 years agoget Travis CI working
David Tolnay [Sun, 21 Jun 2015 05:44:09 +0000 (22:44 -0700)]
get Travis CI working

9 years agoRestore import into caller's namespace
Nicolas Williams [Sat, 27 Jun 2015 04:40:37 +0000 (23:40 -0500)]
Restore import into caller's namespace

9 years agoSlight re-phrasing of module docs
Nicolas Williams [Sat, 27 Jun 2015 04:38:24 +0000 (23:38 -0500)]
Slight re-phrasing of module docs

9 years agoUse set -u in tests/setup
Nicolas Williams [Sat, 27 Jun 2015 04:36:34 +0000 (23:36 -0500)]
Use set -u in tests/setup

9 years agoFix #830
Nicolas Williams [Sat, 27 Jun 2015 02:24:01 +0000 (21:24 -0500)]
Fix #830

9 years agoUpdate Adavanced section of manual
Nicolas Williams [Sat, 27 Jun 2015 02:19:29 +0000 (21:19 -0500)]
Update Adavanced section of manual

9 years agoDocument `{$var}`
Nicolas Williams [Sat, 27 Jun 2015 02:18:58 +0000 (21:18 -0500)]
Document `{$var}`

9 years agoAdd `{$var}` `. as {$var}` syntax (fix #831)
Nicolas Williams [Sat, 27 Jun 2015 01:29:04 +0000 (20:29 -0500)]
Add `{$var}` `. as {$var}` syntax (fix #831)

9 years agoAdd streaming utilities (fix #827)
Nicolas Williams [Sat, 27 Jun 2015 01:16:23 +0000 (20:16 -0500)]
Add streaming utilities (fix #827)

9 years agoAlternative implementation of tovalues
Nicolas Williams [Sat, 27 Jun 2015 01:15:04 +0000 (20:15 -0500)]
Alternative implementation of tovalues

9 years agoAdd combinations/0 and combinations/1
Santiago Lapresta [Thu, 4 Jun 2015 16:30:38 +0000 (18:30 +0200)]
Add combinations/0 and combinations/1

9 years agoWriteFile() on WIN32 when stdout isatty (fix #824)
Nicolas Williams [Mon, 22 Jun 2015 23:15:51 +0000 (18:15 -0500)]
WriteFile() on WIN32 when stdout isatty (fix #824)

Use WriteFile() and bypass stdio IFF stdout isatty and we're on Windows.

9 years agoFix test failure introduced by previous commit
Nicolas Williams [Mon, 22 Jun 2015 23:32:28 +0000 (18:32 -0500)]
Fix test failure introduced by previous commit

9 years agofix errors flagged by clang static analyzer
David Tolnay [Fri, 19 Jun 2015 17:33:35 +0000 (10:33 -0700)]
fix errors flagged by clang static analyzer

builtin.c: bug - free of uninitialized jv
compile.c: missing assertion
jq_test.c: buggy logic / unreachable code
jv.c: missing assertion
jv_alloc.c: false positive - intentional read of uninitialized memory
jv_file.c: dead code

9 years agoFix #811: use CommandLineToArgvW() and _wfopen()
Nicolas Williams [Fri, 19 Jun 2015 22:10:45 +0000 (17:10 -0500)]
Fix #811: use CommandLineToArgvW() and _wfopen()

9 years agofix use after free in f_strptime
David Tolnay [Fri, 19 Jun 2015 05:15:41 +0000 (22:15 -0700)]
fix use after free in f_strptime

9 years agoseparate jq, oniguruma, sh, and man tests
David Tolnay [Fri, 19 Jun 2015 02:38:25 +0000 (19:38 -0700)]
separate jq, oniguruma, sh, and man tests

9 years agoargv[] may not be UTF-8 (fix #811)
Nicolas Williams [Fri, 19 Jun 2015 02:24:41 +0000 (21:24 -0500)]
argv[] may not be UTF-8 (fix #811)

9 years agoAdd alloca() discovery to configure.ac
Doug Luce [Thu, 18 Jun 2015 18:07:16 +0000 (11:07 -0700)]
Add alloca() discovery to configure.ac

The build failed on FreeBSD as there is no alloca.h.  This patch is
lifted from the autoconf documentation.

9 years agoFix `finites`
Nicolas Williams [Thu, 18 Jun 2015 15:14:52 +0000 (10:14 -0500)]
Fix `finites`

9 years agofix broken tests in manual.yml
David Tolnay [Thu, 18 Jun 2015 04:49:56 +0000 (21:49 -0700)]
fix broken tests in manual.yml

9 years agoFix #802
Nicolas Williams [Thu, 18 Jun 2015 05:03:46 +0000 (00:03 -0500)]
Fix #802

9 years agoAdd isnormal and related, rename *inf
Nicolas Williams [Thu, 18 Jun 2015 04:14:26 +0000 (23:14 -0500)]
Add isnormal and related, rename *inf

9 years agoFix #814: raise on div-0, add inf isinf nan isnan
Nicolas Williams [Thu, 18 Jun 2015 00:46:57 +0000 (19:46 -0500)]
Fix #814: raise on div-0, add inf isinf nan isnan

9 years agoFix infinite loop on error in sequence parser
Nicolas Williams [Thu, 18 Jun 2015 00:46:15 +0000 (19:46 -0500)]
Fix infinite loop on error in sequence parser

9 years agoSequence parser: wait for RS on startup (fix #687)
Nicolas Williams [Wed, 17 Jun 2015 16:24:34 +0000 (11:24 -0500)]
Sequence parser: wait for RS on startup (fix #687)

Per-RFC7464.

9 years agoFix infinite loop on EOF bug
Nicolas Williams [Wed, 17 Jun 2015 16:23:58 +0000 (11:23 -0500)]
Fix infinite loop on EOF bug

9 years agoAdd Missing Makefile Dependency
Aaron Peschel [Tue, 9 Jun 2015 23:45:06 +0000 (16:45 -0700)]
Add Missing Makefile Dependency

main.c requires version.h, but there is no logic marking this dependency
in the Makefile. This commit adds the dependency to the Makefile
template.

9 years agoClarify array destructuring docs
Nicolas Williams [Tue, 9 Jun 2015 22:29:37 +0000 (17:29 -0500)]
Clarify array destructuring docs

9 years agoarray and object destructuring (fix #533)
David Tolnay [Mon, 8 Jun 2015 04:45:14 +0000 (21:45 -0700)]
array and object destructuring (fix #533)

`. as [$i, $j, $k] | ...`
`. as {a: $i, b: $j} | ...`
`. as [[[$i]], {a: $j}] | ...`
`foreach . as [$i, $j, $k] (...)`
`reduce . as {a: $i, b: $j} (...)`

9 years agoRemove extension from links
cdnbacon [Tue, 2 Jun 2015 19:00:14 +0000 (15:00 -0400)]
Remove extension from links

The downloads are available without an extension.

9 years agoAdd --tab and -indent n options
Nicolas Williams [Thu, 4 Jun 2015 01:20:11 +0000 (20:20 -0500)]
Add --tab and -indent n options

9 years agoImprove usage message
Nicolas Williams [Fri, 29 May 2015 20:35:30 +0000 (15:35 -0500)]
Improve usage message

9 years agoFixup --slurpfile/argile docs
Nicolas Williams [Fri, 29 May 2015 20:25:30 +0000 (15:25 -0500)]
Fixup --slurpfile/argile docs

9 years agoAdd --slurpfile
Nicolas Williams [Fri, 29 May 2015 19:19:23 +0000 (14:19 -0500)]
Add --slurpfile

9 years agoBetter handling of stdout errors
Nicolas Williams [Fri, 29 May 2015 16:50:08 +0000 (11:50 -0500)]
Better handling of stdout errors

9 years agoFix --argfile memleak (fix #799 part 2)
Nicolas Williams [Fri, 29 May 2015 16:49:45 +0000 (11:49 -0500)]
Fix --argfile memleak (fix #799 part 2)

9 years agoFix jv_load_file() (partial fix #799)
Nicolas Williams [Fri, 29 May 2015 16:48:10 +0000 (11:48 -0500)]
Fix jv_load_file() (partial fix #799)

9 years agoRevert "Fix #705 (--argfile weirdness)"
Nicolas Williams [Fri, 29 May 2015 15:38:08 +0000 (10:38 -0500)]
Revert "Fix #705 (--argfile weirdness)"

This reverts commit 3d2ab93b116f966b071e835a6656452cafc61aef.

9 years agoRevert "Better argfile fix (#705, fix #736)"
Nicolas Williams [Fri, 29 May 2015 15:37:58 +0000 (10:37 -0500)]
Revert "Better argfile fix (#705, fix #736)"

This reverts commit 4f8567476d3a6e8b5b422d05190f777221b984fb.

9 years agoAdd jv_mem_strdup*() and callocs too
Nicolas Williams [Tue, 26 May 2015 02:12:29 +0000 (21:12 -0500)]
Add jv_mem_strdup*() and callocs too

9 years agoAdd ./configure --enable-all-static instead
Nicolas Williams [Tue, 26 May 2015 02:19:56 +0000 (21:19 -0500)]
Add ./configure --enable-all-static instead

9 years agoAlways add -all-static when --enable-static
Nicolas Williams [Mon, 25 May 2015 19:14:53 +0000 (14:14 -0500)]
Always add -all-static when --enable-static

9 years agoUpdate parser.c
Nicolas Williams [Mon, 25 May 2015 18:17:22 +0000 (13:17 -0500)]
Update parser.c

9 years agoKeywords should be OK as object keys (fix #794)
Nicolas Williams [Mon, 25 May 2015 18:16:45 +0000 (13:16 -0500)]
Keywords should be OK as object keys (fix #794)

With this change it's now OK to use keywords as object keys like so:

    {if:0}

9 years agoFix Windows build: util.c
Nicolas Williams [Mon, 25 May 2015 07:06:44 +0000 (02:06 -0500)]
Fix Windows build: util.c

9 years agoFix #793
Steven Penny [Sun, 24 May 2015 14:42:13 +0000 (09:42 -0500)]
Fix #793

9 years agoAdd wrapping and clamping to jv_array_slice
Travis Gockel [Thu, 5 Mar 2015 04:09:00 +0000 (21:09 -0700)]
Add wrapping and clamping to jv_array_slice

Fix #716.  Fix #717.

9 years agoPrint offending object in runtime error messages
Assaf Gordon [Fri, 17 Apr 2015 22:18:33 +0000 (18:18 -0400)]
Print offending object in runtime error messages

When reporting an error to the user, add information about the offending
object/value (possibly truncated).

The goal is to give a user some context regarding which input object
caused the runtime error.

Examples:

    $ echo '"hello"' | ./jq '-.'
    jq: error: string ("hello") cannot be negated

    $ echo '"very-long-string"' | ./jq '-.'
    jq: error: string ("very-long-...) cannot be negated

    $ echo '["1",2]' | ./jq '.|join(",")'
    jq: error: string (",") and number (2) cannot be added

    $ echo '["1","2",{"a":{"b":{"c":33}}}]' | ./jq '.|join(",")'
    jq: error: string (",") and object ({"a":{"b":{...) cannot be added

    $ echo '{"a":{"b":{"c":33}}}' | ./jq '.a | @tsv'
    jq: error: object ({"b":{"c":33}}) cannot be tsv-formatted, only array

(Fix #754)

9 years agoFix error message for @tsv
Nicolas Williams [Thu, 21 May 2015 23:20:05 +0000 (18:20 -0500)]
Fix error message for @tsv

9 years agoDon't test input_filename/line_number yet
Nicolas Williams [Thu, 21 May 2015 22:47:01 +0000 (17:47 -0500)]
Don't test input_filename/line_number yet

9 years agoAdd filename/line functions to jq (fix #753)
Assaf Gordon [Fri, 17 Apr 2015 20:08:10 +0000 (16:08 -0400)]
Add filename/line functions to jq (fix #753)

This adds `input_filename` and `input_line_number` built-in functions
for use in, for example, `error` messages.

Example:

    $ printf '{"a":1}\n{"a":2}\n' > 4.json
    $ printf '{"a":"hello"}\n' > 5.json
    $ ./jq '{ "file":input_filename, "line":input_line_number, "value":.a }' 4.json 5.json
    {
      "file": "4.json",
      "line": 1,
      "value": 1
    }
    {
      "file": "4.json",
      "line": 2,
      "value": 2
    }
    {
      "file": "5.json",
      "line": 1,
      "value": "hello"
    }

9 years agoFix formatting error in manual.yml
Nicolas Williams [Thu, 21 May 2015 05:11:11 +0000 (00:11 -0500)]
Fix formatting error in manual.yml

9 years agoReport filename:line on runtime errors (fix #752)
Assaf Gordon [Fri, 17 Apr 2015 19:28:00 +0000 (15:28 -0400)]
Report filename:line on runtime errors (fix #752)

With this patch, jq run-time errors printed to stderr will contain the
filename and line of the offending input.

But note that the JSON text parser does (yet) print the input filename
on parse error.  A jq run-time error is a jq program error, not
including syntax errors nor JSON text input format errors.

Examples:

With stdin and multiple lines:

    $ printf '{"a":43}\n{"a":{"b":66}}\n' | ./jq '.a+1'
    44
    jq: error (at stdin:2): object and number cannot be added

With multiple files:

    $ printf '{"a":43}' > 1.json
    $ printf '{"a":"hello"}\n' > 2.json
    $ printf '{"a":{"b":66}}\n' > 3.json
    $ ./jq '[.a]|@tsv' 1.json 2.json 3.json
    "43"
    "hello"
    jq: error (at 3.json:1): object is not valid in a csv row

With very long lines (spanning multiple `fgets` calls):

    $ (  printf '{"a":43}\n' ;
         printf '{"a":{"b":[' ; seq 10000 | paste -d, -s | tr -d '\n' ;
         printf ']}}\n' ;
         printf '{"a":"hello"}\n' ) | ./jq '[.a] | @tsv'
    "43"
    jq: error (at stdin:2): object is not valid in a csv row
    "hello"

With raw input:

    $ seq 1000 | ./jq --raw-input 'select(.=="700") | . + 10'
    jq: error (at stdin:700): string and number cannot be added

Caveat:
The reported line will be the last line of the (valid) parsed JSON data.
Example:

    $ printf '{\n"a":\n"hello"\n\n\n}\n' | ./jq '.a+4'
    jq: error (at stdin:6): string and number cannot be added

9 years agoFix spelling
Nicolas Williams [Wed, 20 May 2015 15:21:30 +0000 (10:21 -0500)]
Fix spelling

9 years agoDocument gsub/3
Nicolas Williams [Tue, 19 May 2015 06:19:51 +0000 (01:19 -0500)]
Document gsub/3

9 years agoFix gsub, add gsub/3 (fix #782)
Nicolas Williams [Tue, 19 May 2015 04:02:11 +0000 (23:02 -0500)]
Fix gsub, add gsub/3 (fix #782)

9 years agoAdd -all-static when --enable-static
Nicolas Williams [Mon, 18 May 2015 17:07:29 +0000 (12:07 -0500)]
Add -all-static when --enable-static

9 years agoFix --stream assertion
Nicolas Williams [Tue, 12 May 2015 02:29:50 +0000 (21:29 -0500)]
Fix --stream assertion

9 years agoAdd error injection library
Nicolas Williams [Mon, 4 May 2015 00:23:37 +0000 (19:23 -0500)]
Add error injection library

9 years agoReport read errors too (and fix #772)
Nicolas Williams [Tue, 28 Apr 2015 22:27:12 +0000 (17:27 -0500)]
Report read errors too (and fix #772)

9 years agoFix README
Nicolas Williams [Sat, 2 May 2015 22:36:33 +0000 (17:36 -0500)]
Fix README

9 years agoREADME: send questions to SO and Freenode
Nicolas Williams [Sat, 2 May 2015 22:34:52 +0000 (17:34 -0500)]
README: send questions to SO and Freenode

9 years agousage() should check fprintf() result (fix #771)
Nicolas Williams [Tue, 28 Apr 2015 15:39:34 +0000 (10:39 -0500)]
usage() should check fprintf() result (fix #771)

9 years agoUse jv_mem_alloc() in compile.c (fix #771)
Nicolas Williams [Tue, 28 Apr 2015 15:37:37 +0000 (10:37 -0500)]
Use jv_mem_alloc() in compile.c (fix #771)

9 years agoFix header guards (fix #770)
Nicolas Williams [Tue, 28 Apr 2015 15:36:21 +0000 (10:36 -0500)]
Fix header guards (fix #770)

9 years ago--raw-input wrongly adds NULs (fix #761)
Nicolas Williams [Fri, 24 Apr 2015 15:42:19 +0000 (10:42 -0500)]
--raw-input wrongly adds NULs (fix #761)

9 years agoWith `inputs` builtin, -n and -R can now coexist
Nicolas Williams [Fri, 24 Apr 2015 04:37:11 +0000 (23:37 -0500)]
With `inputs` builtin, -n and -R can now coexist