Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | * eval.c (eval_init): Missing documented memql function registered. | Kaz Kylheku | 2012-01-07 | 1 | -9/+21 | |
| | | | | * txr.vim: Updated with numerous missing symbols. | |||||
* | New functionality: mod and modlast directives in repeat and rep. | Kaz Kylheku | 2011-12-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | * eval.c (eval_init): Use new symbol variable mod_s instead of calling intern. * match.c (mod_s, modlast_s): Symbol variables defined. (do_output_line): mod and modlast directives implemented under rep. (do_output): likewise under repeat. (syms_init): Initialize new symbol variables. * match.h (mod_s, modlast_s): Declared. * parser.l (MOD, MODLAST): Parse new token types. * parser.y (MOD, MODLAST): New tokens. (repeat_parts_opt, rep_parts_opt): New syntax. (repeat_rep_helper): Handle mod and modlast syntax. * txr.1: Updated. * txr.vim: Updated. | |||||
* | * txr.vim: Fixed to char literal syntax. | Kaz Kylheku | 2011-12-21 | 1 | -0/+1 | |
| | ||||||
* | * txr.vim: iskeyword updated. | Kaz Kylheku | 2011-12-16 | 1 | -2/+1 | |
| | ||||||
* | @# comments are becoming obsolescent. @# comments | Kaz Kylheku | 2011-12-14 | 1 | -4/+6 | |
| | | | | | | | | | | | can now be used. Within nested forms, Lisp-compatible ; comments are suported. * parser.l: Support @# and ; comments. * txr.1: Documentation updated. * txr.vim: Updated. | |||||
* | * txr.vim: Highlight hash prefix and quote. | Kaz Kylheku | 2011-12-14 | 1 | -3/+8 | |
| | ||||||
* | * txr.vim (txr_atat): New match. The @@ sequence is recognized | Kaz Kylheku | 2011-12-10 | 1 | -0/+2 | |
| | | | | properly and highlighted. | |||||
* | * txr.vim: Updated with all operators and functions. | Kaz Kylheku | 2011-12-07 | 1 | -37/+39 | |
| | ||||||
* | * txr.vim: New operators added. | Kaz Kylheku | 2011-11-30 | 1 | -2/+3 | |
| | ||||||
* | * eval.c (eval_init): More functions. | Kaz Kylheku | 2011-11-28 | 1 | -0/+5 | |
| | | | | * txr.vim: More highlighting. | |||||
* | Adding streams functions to Lisp evaluator. | Kaz Kylheku | 2011-11-28 | 1 | -4/+39 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * eval.c (op_let): Bugfix: was not evaluating var init forms. (reg_var): New static function. (eval_init): Registered numerous stream functions and the three standard streams. * lib.c (obj_print, obj_pprint): Modified to return a value. (init): eval_init called after stream_init, because eval needs the three standrad streams prepared. * lib.h (obj_print, obj_pprint): Declarations updated. * stream.c (format): Support t as a shorthand for standard output. (formatv, open_directory, open_file, open_pipe): New functions. (w_opendir): New static function. * stream.h (formatv, open_directory, open_file, open_pipe): Declared. * txr.vim: set iskeyword such that keyword can contain special characters. Set b:current_syntax to "lisp". (txl_keyword): New keyword category populated with TXR Lisp keywords defined as separate category. (txr_list): Contains txl_keyword. (txr_meta): Contains txl_keyword and txr_list. | |||||
* | Task #11436 | Kaz Kylheku | 2011-11-26 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lisp interpreter added. * gc.c (finalize, mark_obj): Handle ENV objects. * hash.c (struct hash): acons_new_l_fun function pointer order of arguments change. (equal_hash): Handle ENV. (make_hash, gethash_l): Use cobj_handle for type safety. Follow change in acons_new_l. (gethash, gethash_f, remhash, hash_count, hash_get_userdata, hash_set_userdata, hash_next): Use cobj_handle. (gethash_n): New function. * hash.h (gethash_n): Declared. * lib.c (env_s): New symbol variable. (code2type, equal): Handle ENV. (plusv, minusv, mul, mulv, trunc, mod, gtv, ltv, gev, lev, maxv, minv, int_str): New functions. (rehome_sym): New static function. (func_f0, func_f1, func_f2, func_f3, func_f4, func_n0, func_n1, func_n2, func_n3, func_n4): Initialize new fields of struct func. (func_f0v, func_f1v, func_f2v, func_f3v, func_f4v, func_n0v, func_n1v, func_n2v, func_n3v, func_n4v, func_interp): New functions. (apply): Function removed: sanely re-implemented in new eval.c file. (funcall, funcall1, funcall2, funcall3, funcall4): Handle variadic and interpreted functions. (acons, acons_new, acons_new_l, aconsq_new, aconsq_new_l): Reordered arguments for compatibility with Common Lisp acons. (obj_init): Special hack to prepare hash_s symbol, which is needed for type checking inside the hash table funtions invoked by make_package, at a time when the symbol is not yet interned. Initialize new env_s variable. (obj_print, obj_pprint): Handle ENV. Fix confusing rendering of of function type. (init): Call new function eval_init. * lib.h (enum type): New enumeration member ENV. (struct func): functype member changed to bitfield. New bitfied members minparam and variadic. New members in f union: f0v, f1v, f2v, f3v, f4v, n0v, n1v, n2v, n3v, n4v. (struct env): New type. (union obj): New member e of type struct env. (env_s): Variable declared. (plusv, minusv, mul, mulv, trunc, mod, gtv, ltv, gev, lev, maxv, minv, | |||||
* | * txr.vim: Update for new character constant syntax. | Kaz Kylheku | 2011-11-15 | 1 | -1/+2 | |
| | ||||||
* | * txr.vim: Missing coll keyword added. | Kaz Kylheku | 2011-11-09 | 1 | -1/+1 | |
| | ||||||
* | * txr.vim: Make sure whitespace is recognized after @. | Kaz Kylheku | 2011-11-06 | 1 | -4/+4 | |
| | ||||||
* | Task #11581 | Kaz Kylheku | 2011-11-06 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | * match.c (gather_s): New keyword variable. (v_gather): New function. (syms_init): gather_s initialized. (dir_tables_init): v_gather entered into table. * match.h (gather_s): Declared. * parser.l: GATHER token scanning added. * parser.y: GATHER token added. gather_clause nonterminal added. * txr.1: New directive documented. * txr.vim: gather keyword introduced. | |||||
* | * txr.vim: Character literals. | Kaz Kylheku | 2011-11-03 | 1 | -4/+6 | |
| | ||||||
* | * txr.vim: Eliminated useless skip arguments from several regions. | Kaz Kylheku | 2011-11-02 | 1 | -3/+3 | |
| | ||||||
* | * txr.vim: Highlight variables inside directives and lists. | Kaz Kylheku | 2011-11-02 | 1 | -2/+4 | |
| | | | | Also, highlight embedded metalists as regions. | |||||
* | * txr.vim: Added missing keywords. | Kaz Kylheku | 2011-11-02 | 1 | -2/+5 | |
| | ||||||
* | * txr.vim: Added installation instructions. | Kaz Kylheku | 2011-11-01 | 1 | -0/+11 | |
| | ||||||
* | Syntax highlighting for Vim. | Kaz Kylheku | 2011-11-01 | 1 | -0/+48 | |
* txr.vim: New file. |