diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-06-03 20:53:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-06-03 20:53:08 -0700 |
commit | 230696053c026fc959d190166c16ed8bf3eaa21d (patch) | |
tree | 4e3137a3e63a52d79221f4d2baac81e46629c847 | |
parent | 5664ef6838f6027a1db5520cb4d749e21fd1fc7a (diff) | |
download | txr-230696053c026fc959d190166c16ed8bf3eaa21d.tar.gz txr-230696053c026fc959d190166c16ed8bf3eaa21d.tar.bz2 txr-230696053c026fc959d190166c16ed8bf3eaa21d.zip |
@(output) evaluates destination as Lisp.
* match.c (v_output): Use txeval on the destination only if
compatibility is 142 or lower, or it is a meta expression
(so that @var and @(expr) still work without having to use
the compatibility option).
* txr.1: Documented and put in compatibility notes.
-rw-r--r-- | match.c | 8 | ||||
-rw-r--r-- | txr.1 | 22 |
2 files changed, 23 insertions, 7 deletions
@@ -3219,7 +3219,13 @@ static val v_output(match_files_ctx *c) } else if (!keywordp(first(dest_spec))) { uses_or2; val form = first(dest_spec); - val val = txeval(specline, form, c->bindings); + val sym = if2(consp(form), car(form)); + int tx = ((opt_compat && opt_compat <= 142) || + (sym == var_s) || (sym == expr_s)); + val val = if3(tx, + txeval(specline, form, c->bindings), + eval_with_bindings(form, specline, c->bindings, + specline)); dest = or2(val, dest); pop(&dest_spec); } @@ -7346,11 +7346,14 @@ Any remaining arguments after the optional destination are the keyword list. If the destination is missing, then the entire argument list is a keyword list. -The destination may be a string which gives the path name of -a file to open for output. The destination string may be specified as a -variable which holds text, as a string literal or as a quasiliteral - -Alternatively, the destination may be a stream object. +The +.meta destination +argument, +if present, +is treated as a \*(TL expression and evaluated. +The resulting value is taken as the output destination. The value may be a +string which gives the path name of a file to open for output. Otherwise, +the destination must be a stream object. The keyword list consists of a mixture of Boolean keywords which do not have an argument, or keywords with arguments. @@ -43109,7 +43112,14 @@ as denoting standard input, and .code @(output) recognized it as standard output. These behaviors were also removed; versions after 142 recognize this convention only when it appears -as a command line argument. All these old behaviors are provided +as a command line argument. Lastly, until version 142, the +.code @(output) +directive evaluated the +.meta destination +argument as an expression of the \*(TX pattern language, requiring +.code @ +to be used to denote a Lisp expression. This is no longer required. +All these old behaviors are provided if compatibility with 142 or earlier is requested. .IP 139 After \*(TX 139, changes were implemented in the area of pseudo-random |