summaryrefslogtreecommitdiffstats
path: root/lib.c
Commit message (Expand)AuthorAgeFilesLines
* Let some sequence functions work on structs.Kaz Kylheku2016-10-131-28/+32
* find-max and find-min support hashes.Kaz Kylheku2016-10-121-13/+55
* Support gmtoff and zone in time struct.Kaz Kylheku2016-10-121-2/+18
* length and empty functions support ranges.Kaz Kylheku2016-10-041-0/+4
* Synchronize license comments with LICENSE.Kaz Kylheku2016-10-011-16/+17
* Bugfix: out-of-range negative indices into lists.Kaz Kylheku2016-09-231-2/+5
* Switch regex type from sys:regex to regex.Kaz Kylheku2016-09-231-1/+1
* Regexes now callable as functions.Kaz Kylheku2016-09-221-0/+16
* Bugfix in tok-str: empty-match regexes.Kaz Kylheku2016-09-161-10/+7
* Bugfix in split-str: empty-match regexes.Kaz Kylheku2016-09-161-4/+5
* split-str gains ability to keep separating pieces.Kaz Kylheku2016-09-161-1/+14
* key function argument on remq, remql and remqual.Kaz Kylheku2016-09-151-6/+20
* New keepq, keepql and keepqual functions.Kaz Kylheku2016-09-151-0/+61
* Fix broken keep/remove functions.Kaz Kylheku2016-09-141-19/+10
* Semantics change in trim-str function.Kaz Kylheku2016-09-111-4/+12
* Adding time-parse method.Kaz Kylheku2016-08-251-17/+66
* New time-string method on time struct.Kaz Kylheku2016-08-221-16/+52
* Adding time-parse function: wrapper for strptime.Kaz Kylheku2016-08-221-0/+18
* Print notation for quasi-strings and quasi-word-lists.Kaz Kylheku2016-07-201-0/+64
* Replace 0 constant with nil.Kaz Kylheku2016-07-191-1/+1
* Tidy up some vector object initializations.Kaz Kylheku2016-06-171-7/+7
* New --free-all option for freeing memory on exit.Kaz Kylheku2016-06-071-3/+1
* Handle sequence structs in length.Kaz Kylheku2016-06-061-0/+2
* Handle sequence structs in toseq.Kaz Kylheku2016-06-061-0/+4
* Handle sequence better in index list case of replace.Kaz Kylheku2016-06-061-14/+9
* Handle structs in list collection operations.Kaz Kylheku2016-06-061-0/+10
* Use local var in list_collect_{nconc,append}.Kaz Kylheku2016-06-061-10/+12
* Fix useless tolist over COBJ objects.Kaz Kylheku2016-06-061-1/+1
* Fix error messages in internal function scat.Kaz Kylheku2016-06-051-2/+2
* Adding special function from-list.Kaz Kylheku2016-06-011-1/+9
* ldiff uses equal for all non-list arguments.Kaz Kylheku2016-06-011-6/+5
* Methods for turning objects into sequences.Kaz Kylheku2016-06-011-2/+20
* Remove superfluous arg defaulting in drop functions.Kaz Kylheku2016-05-261-4/+2
* Bugfix: argument defaulting in take-until.Kaz Kylheku2016-05-261-2/+2
* Handle integer overflow in length_list.Kaz Kylheku2016-05-181-2/+14
* Adding termios support.Kaz Kylheku2016-05-181-0/+4
* Some streamlining in the cons recycling.Kaz Kylheku2016-05-151-10/+8
* Bugfix: recycled conses play nice with gen GC.Kaz Kylheku2016-05-151-0/+3
* Bugfix in - and / functions.Kaz Kylheku2016-05-131-4/+4
* Avoid unnecessary evaluation in argument defaulting.Kaz Kylheku2016-05-071-1/+0
* Adding panic macro, which throws a panic exception.Kaz Kylheku2016-05-071-1/+2
* Clean-up rand code; implement configurable warmup.Kaz Kylheku2016-04-281-1/+1
* Rename misleadingly named out_str_pretty function.Kaz Kylheku2016-04-211-5/+5
* Harmonize rules for string and character printing.Kaz Kylheku2016-04-211-9/+24
* Mechanism for recycling conses outside of GC.Kaz Kylheku2016-04-201-2/+47
* Adding ftw function.Kaz Kylheku2016-04-151-0/+4
* Fix proper-listp to proper-list-p.Kaz Kylheku2016-04-141-1/+1
* UTF-8 API overhaul: security, and other concerns.Kaz Kylheku2016-03-311-1/+2
* Adding rightmost item search functions.Kaz Kylheku2016-03-271-1/+267
* Methods in time struct: time-local and time-utc.Kaz Kylheku2016-03-241-4/+28