| Commit message (Expand) | Author | Age | Files | Lines |
* | New way of handling exceptions without unwinding. | Kaz Kylheku | 2015-10-14 | 1 | -1/+40 |
* | Hash table iterators exposed, with new macro. | Kaz Kylheku | 2015-10-11 | 1 | -0/+2 |
* | Improve progn expansion. | Kaz Kylheku | 2015-10-09 | 1 | -4/+13 |
* | Tweaking expansions of when and until. | Kaz Kylheku | 2015-10-09 | 1 | -2/+10 |
* | Adding defex macro and related functions. | Kaz Kylheku | 2015-10-08 | 1 | -0/+23 |
* | Adding promisep function. | Kaz Kylheku | 2015-10-07 | 1 | -0/+12 |
* | New function, expand-right. | Kaz Kylheku | 2015-10-06 | 1 | -0/+29 |
* | New function: ginterate. | Kaz Kylheku | 2015-10-06 | 1 | -0/+31 |
* | New functions take, drop, {take,drop}-{while,until}. | Kaz Kylheku | 2015-10-05 | 1 | -0/+6 |
* | Allow empty loops to be interrupted by signals. | Kaz Kylheku | 2015-10-02 | 1 | -0/+5 |
* | bugfix: macro-time not bound as special operator. | Kaz Kylheku | 2015-10-02 | 1 | -0/+1 |
* | bugfix: symbol-function throws on builtin macro. | Kaz Kylheku | 2015-10-01 | 1 | -2/+2 |
* | Fix incorrect "during expansion of ..." error reporting. | Kaz Kylheku | 2015-09-30 | 1 | -1/+4 |
* | return and return-from must throw, not abort. | Kaz Kylheku | 2015-09-25 | 1 | -0/+3 |
* | Adding flatcar* function. | Kaz Kylheku | 2015-09-19 | 1 | -0/+1 |
* | New function: flatcar. | Kaz Kylheku | 2015-09-18 | 1 | -0/+1 |
* | Remove duplicate variable initialization. | Kaz Kylheku | 2015-09-10 | 1 | -1/+0 |
* | Don't scan C source code for Lisp symbols. | Kaz Kylheku | 2015-09-10 | 1 | -0/+3 |
* | New functions, subtypep and typep. | Kaz Kylheku | 2015-09-08 | 1 | -0/+2 |
* | Don't report unbound var errors against wrong form. | Kaz Kylheku | 2015-09-08 | 1 | -2/+5 |
* | Don't show whole function definition in args mismatch. | Kaz Kylheku | 2015-09-07 | 1 | -4/+11 |
* | Allow evaluation from repl to be interrupted. | Kaz Kylheku | 2015-09-06 | 1 | -0/+1 |
* | Parenthesis sensitivity for completion. | Kaz Kylheku | 2015-09-06 | 1 | -1/+1 |
* | Syntax errors refer to REPL line number. | Kaz Kylheku | 2015-09-05 | 1 | -2/+2 |
* | Fix wrongly named hash_lit_s symbol. | Kaz Kylheku | 2015-09-01 | 1 | -1/+1 |
* | Time structure. | Kaz Kylheku | 2015-08-31 | 1 | -0/+2 |
* | Introducing structs. | Kaz Kylheku | 2015-09-02 | 1 | -1/+2 |
* | Renaming c_true to tnil. | Kaz Kylheku | 2015-08-27 | 1 | -2/+2 |
* | Replace two-step initialization of args with macros. | Kaz Kylheku | 2015-08-24 | 1 | -15/+8 |
* | Compatibility <= 107 allows redefinition of builtins. | Kaz Kylheku | 2015-08-24 | 1 | -0/+2 |
* | New function: shuffle. | Kaz Kylheku | 2015-08-24 | 1 | -0/+1 |
* | Use of new args for function calls in interpreter. | Kaz Kylheku | 2015-08-23 | 1 | -18/+49 |
* | Large scale conversion to new way of handling arguments. | Kaz Kylheku | 2015-08-23 | 1 | -199/+118 |
* | Don't implement range and range* with variadic functions. | Kaz Kylheku | 2015-08-21 | 1 | -15/+14 |
* | New function, clamp. | Kaz Kylheku | 2015-08-13 | 1 | -0/+1 |
* | New display-width function. | Kaz Kylheku | 2015-08-13 | 1 | -0/+1 |
* | Dot with no whitespace generates qref syntax. | Kaz Kylheku | 2015-08-10 | 1 | -1/+2 |
* | C++ upkeep: resolve multiple definitions of fun_k. | Kaz Kylheku | 2015-08-07 | 1 | -2/+1 |
* | Better diagnosis for loose @ forms. | Kaz Kylheku | 2015-08-06 | 1 | -0/+7 |
* | * eval.c (do_eval): Bugfix: though last_form_evaled is | Kaz Kylheku | 2015-08-05 | 1 | -0/+1 |
* | * eval.c (bind_args): Use new ~! for proper indentation | Kaz Kylheku | 2015-08-04 | 1 | -5/+5 |
* | * eval.c (func_get_name): New function. | Kaz Kylheku | 2015-08-04 | 1 | -7/+41 |
* | * eval.c (force): Default the new second argument of source_loc_str. | Kaz Kylheku | 2015-08-04 | 1 | -6/+7 |
* | * hash.c (hash_revget): New function. | Kaz Kylheku | 2015-08-04 | 1 | -0/+1 |
* | Switching some globals to lexical and changing some names. | Kaz Kylheku | 2015-08-03 | 1 | -12/+31 |
* | Introducing global lexicals: defvarl, defparml. | Kaz Kylheku | 2015-08-03 | 1 | -13/+32 |
* | * eval.c (special_p): Function renamed to special_var_p. | Kaz Kylheku | 2015-08-01 | 1 | -7/+9 |
* | Multi-line, indented printing of structure. | Kaz Kylheku | 2015-07-31 | 1 | -4/+16 |
* | * eval.c (op_quote): Improved diagnostic. | Kaz Kylheku | 2015-07-24 | 1 | -1/+1 |
* | Adding nthcdr as accessor. | Kaz Kylheku | 2015-07-22 | 1 | -0/+1 |