diff options
author | Paul A. Patience <paul@apatience.com> | 2021-07-03 03:04:40 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-07-03 13:46:55 -0700 |
commit | 7e143af86f72595a6e1280cabfd4a85839279a73 (patch) | |
tree | 6c71c46adc9374d041c460ba669095b697be2325 /RELNOTES | |
parent | a06f6a7216b0f2f1c4f64e06f599551f0fb5ac34 (diff) | |
download | txr-7e143af86f72595a6e1280cabfd4a85839279a73.tar.gz txr-7e143af86f72595a6e1280cabfd4a85839279a73.tar.bz2 txr-7e143af86f72595a6e1280cabfd4a85839279a73.zip |
doc: fix various issues.
* RELNOTES: Fix typos.
* txr.1: Correct alist-remove and alist-nremove's argument
lists (the keys are variadic). Remove "(the empty string)" from
abs-path-p examples because it formats bizarrely in man output
and is anyway mentioned in the description. Remove spurious
spaces from .mets lines interfering with the formatting. Add some
missing .code and .meta directives. Unitalicize words of Latin
origin that have entered the dictionary ("de facto" and "vice
versa"). Add hyphens to compound words used as adjectives. Remove
hyphen from "non-matching". Move periods inside parentheses
containing full sentences. Add missing words. Remove repeated
words. Fix various other minor issues.
* txr.c (help): Fix a typo. Clarify a description. Add missing
periods. Make some other minor changes.
Diffstat (limited to 'RELNOTES')
-rw-r--r-- | RELNOTES | 27 |
1 files changed, 13 insertions, 14 deletions
@@ -15,8 +15,8 @@ - new functions short-suffix and long-suffix for robustly extracting the suffixes/extensions of path names. - lib: - - new functions cxr and cyr for traversing cons cell - structure using a car/cdr path binary-coded in an integer. + - new functions cxr and cyr for traversing cons-cell + structures using a car/cdr path binary-coded in an integer. - mismatch/rmismatch better optimized for strings - starts-with and ends-with use these. - structural pattern matching: @@ -26,7 +26,7 @@ floating-point token. - tests: - target-installable test cases are now relocatable (can be installed - at any path) due to small improvement in the run.sh script. + at any path) due to a small improvement in the run.sh script. - program-wide: - share/txr/stdlib moved to stdlib. @@ -57,7 +57,7 @@ fileno is invoked on it - formatted printing: - format: new precision modifier - for zero instead of plus sign. - - pic macro: takes advantae of format work to generate better code. + - pic macro: takes advantage of format work to generate better code. - subprocesses: - some file descriptor saving-restoring manipulations moved into child process (in open-process, open-subprocess, run) @@ -71,7 +71,7 @@ so that the txr-case construct effectively backtracks over the data as it tries successive cases. - command-line - - new --noprofile option to invoke listner without processing + - new --noprofile option to invoke listener without processing ~/.txr_profile file. Bugs @@ -135,26 +135,25 @@ - used in tags.tl, which can therefore handle source code that contains struct literals. - compile/eval: - - improvement coordination between error exceptions, - compiler error messages sent to the error stream, and - deferred warnings. + - improved coordination between error exceptions, compiler + error messages sent to the error stream, and deferred warnings. Bugs - listener: - doc function not working in Cygwin/Cygnal port. - - macro and oeprator completion after ' (quote) character; + - macro and operator completion after ' (quote) character; so that (doc 'wh[Tab] will complete on a macro name like while. - system interface: - mkstemp build problem problem affecting Solaris and other platforms. - printer: - - added mising handing for for printing (sys:struct-lit ...) - syntax as #S syntax. + - added missing handling for printing (sys:struct-lit ...) syntax + as #S syntax. - parser - bug with #; commenting syntax not playing nicely with #S literals. - JSON: - test cases on Cygwin work. - - JSON print-read consistency problem addressed.. + - JSON print-read consistency problem addressed. - FFI: - memory leaks in FFI type system when struct type is redefined. - bug in deffi causing the libffi ffi_prep_cif_var function to @@ -177,7 +176,7 @@ Features - JSON support: - #J syntax in TXR Lisp + - #J syntax in TXR Lisp - allows quasi-quoting and circular notation. - I/O with JSON objects, with convenience routines like file-put-json, and others. @@ -392,7 +391,7 @@ - Doc: - numerous improvements in the manual, especially HTML output. - New library function doc for documentation lookup: - - (doc) -> open manual with default browswer + - (doc) -> open manual with default browser - (doc 'cons) -> open manual to specific symbol - INSTALL document maintained. |