-
Notifications
You must be signed in to change notification settings - Fork 9
/
Changes.old
1557 lines (915 loc) · 29.8 KB
/
Changes.old
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-*- encoding: utf-8; -*-
Fri Dec 01 18:35:53 2014 ayoung
* Public release, BUILD7
* XXX snapshot
o inq_sysdir() CYGWIN incorrectly returned a new style WIN32 paths.
o tag improvements.
* BHELP override
* X11 driver published.
* I/O interface refactored.
* Mingw builds
* regexp, 2^16 string length, previously limited to 256 bytes.
Sat May 4 07:38:36 2013 ayoung
* read(), status argument
Thu Dec 20 01:27:32 2012 User
* Dec 2012 snapshot
o doxygen markup support, markup keyword table.
o regdfa anchors \\c.
o POSIX1 symbol tables.
o syntaxdfa, section continuation qweaks.
o Cygwin raw-key logic enhancements.
o seperate colorscheme256/colorscheme configuration elements.
o mintty display and tty profiles tweaks and 256 color selection logic fixes.
o xterm mouse-wheel support.
o set_color_pair() minor syntax parser fixes.
o grunch literal-string.
o tabdb cache.
o background spell initialisation.
o inq_font.
o inq_profile (beta).
Tue Oct 2 09:21:05 2012 User
* tags, minor UI improvements
Fri Aug 17 19:11:15 2012 ayoung
* UNC support
* Alternative build
- Visual Studio Express 2010
- mingw32/msys
* Win32 layer cleaup
Jul 2012 User
* Recent changes
o color
- WIN32 256 color support.
- coloriser() completion.
- colorscheme editor.
o WATCOM build support.
o iconv improvements.
o encoding/guess improvements.
o colorscheme improvements.
o errno/signal systems constants.
- strerror, perror, errnos macros.
- strsignal, signos macros.
o general bug fixes.
o macros
- move_abs(), clip attribute.
* crcpp, imported ucpp-1.3.2
ucpp-1.3 is a C preprocessor compliant to ISO-C99.
Basically a BSD license, without the advertising subclause and with no
reference to Berkeley.
* grunch
o autoload pragma (work in progress).
o __FUNCTION__ definition.
Fri Dec 2 16:52:01 2011 user
* Dec 2011 snapshot
* indent/tab ruler enhancements
o set_tab/inq_tab, primitives.
o common tabs()/set_ruler() interface.
Fri Nov 4 09:00:47 2011 user
* Nov 2011 snapshot
o General UI/dialog improvements
o combo-field implementation.
o edit-field enhancments.
o list-box enhancements.
o colorscheme enhancements.
o format_region/
break on either space or comma (new).
o User mesage query hilite support (e.g. [^Yes|^No]).
o Spell enhancements/
o enchant integration.
o auto-conf.
o Debug-flags visible on top-left corner.
o inq_window_flags/
enumeration and export functionality published.
o inq_buffer_flags/
enumeration and export functionality published.
o inq_display_mode/
functionality published.
o list_extract/
functionality published (beta).
Feb 2010
* foreach()
under development.
Nov 2010
* encoding
o buffer.cr - Extended description to include encoding.
o inq_buffer_type()/set_buffer_type() 'encoding' argument.
* CM version 20 (2.0),
header elements promoted to 32bit.
* try/catch/finally/throw compiler support,
engine work incomplete/under development.
* is_float() published
Nov 2010 user
Recent changes summary
* UTF8 (multiple character support stage 1)
o UTF8 encode/decode.
o File detection rewrite
o Line content primitive rewrite
finally removed global_lp/dot
o UTF term support.
combined character
o width character/cursor movement.
o stable virtual character status.
o echo-line
E_VIRTUAL and E_CHARVALUE.
o region/character-mapping.
o command line option --utf
o buffer-type, line-teminator and encoding seperation.
o multibyte primitive support, including,
next_char/prev_char/delete_char
right/left/up/down
inq_line_length
inq_buffer_type
o new primitives
set_encoding
inq_encoding
edit_file2
o grunch enhancements (\u and \U support)
* Terminals changes
o terminfo/termcap interface build options
--termcap
o xterm (device attribute checks).
o mintty (beta)
o urxvt (beta)
* Buffer/line
o buffer grunch implementation
o reworked line edit functionality
o replaced line queue management and numline logic (off by one logic removed),
all changes marked /*NEWLINE*/.
* General
o debug enhancments
trace_hex, trace_line2 and trace_character
command line argument --test
CR_LEVEL/CR_TRACE[#]/CR_DATA[#] macros
o vm allocator
reference/unreference interface published.
o insert_mode/inq_mode
allow buffer specific assignment.
default system buffers as insert.
inq_mode() - 'localised' argument.
* Configure
o locale.h, wctype.h
o AM_LANGINFO_CODESET
o libterm (terminfo support)
o libmagic
o libutf8
o libmemory
o libiconv
o isascii()
* New macros
o characterat
o strpop
o strpbrk
o inq_terminator and set_terminator
o __regress_replacement
* First draft for 64bit build support (additional work needed).
* Macro enhancements
o search_fwd/bck - implemented 'length' argument.
o move_abs - 'bufnum' argument.
o inq_buffer_type - 'encoding' argument.
o select - directory sort order.
* General
o search, major cleanup
o echo, allow full use of the command-line arena
(temporary col/line display disabled) upon large echo/edit usage.
o modification suffix on buffer titles (*)
o psuedo tty support upgraded to current standards.
o pty driver command set upgraded.
o shell
- posix_spawn() integration
- stderr and mode parameters
- outfile and errfile stream modifiers ">" and ">>"
Sat Jun 4 18:23:30 2011 user
* strverscmp primitive
Mon May 30 23:17:07 2011 user
* _fatal_error
o expanded interface _fatal_error(int signum, [string signame])
Mon May 23 19:35:12 2011 user
* strstr and strcasestr primitives
Thu May 19 19:55:12 2011 user
* modeline.cr
o process #! lines in the event of no explicit mode specification.
Thu May 5 21:02:51 2011 user
* help.cr
o basic coloriser enabled
Mon May 3 12:59:40 2010 user
* calc
o binary support
Thu Apr 8 15:48:22 2010 user
* split_arguments() published
Wed Apr 7 13:52:20 2010 user
* grunch, improved switch/case diagnostics
o break outside of case
o duplicate cases
o multiple defaults
o mixed types
o non constant values
break/breaksw selection logic corrected
constant string multiple and errors on invalid operations.
Sun Apr 4 17:21:31 2010 user
* eval.cr
get_xfloat() and isa_xxxx functions
Sat Apr 3 13:34:42 2010 user
* Linux build changes
* getopt() published
* message()
List conversion support within %s specifications. Invalid argument handling
improvements.
* lisp.c/regress.cr
arg_list() implemented, plus bug-fixes within argv_xxx() support functions
additional sprintf() test cases.
Mon Feb 15 14:52:49 2010 user
* stat, lstat and find_file,
extended returned arguments to include atime, owner and group
identifiers.
Thu Feb 4 22:33:38 2010 user
* key_to_int, cygwin support.
Sun Jan 17 15:48:27 2010 user
* set_/get_team_feature, support description as key.
* m_color, 256 color improvements.
* tty/rxvt-cygwin-native suport added.
* ttyterm.c, bx termination attribute (AIX).
Tue Jan 5 21:15:42 2010 user
* mrxvt support
* ttyterm.c
o cursor control enhancements/fixes.
o source level documentation.
o updated supported ctrlseq's
Mon Jan 4 19:12:53 2010 user
* -E command line argument.
Thu Dec 17 12:55:07 2009 user
* regress, optional test case specification; for example regress dict.
Thu Dec 10 13:22:13 2009 user
* inq_char_timeout() and sysinfo usage()
* inq_echo_line()
* set_echo_line() documented and basic regress.
Thu Dec 3 20:07:44 2009 user
* exposed gmtime()
* exposed file io functionality (alpha)
fopen, fclose, fread, fwrite, fseek, ftell, fstat, flock, fioctl and ftruncate.
Tue Dec 1 20:08:53 2009 user
* list_extract (beta)
Tue Nov 24 20:17:31 2009 user
* time functionality moved to m_time, split from mac1.c
* gmtime() implemented
Tue Oct 27 14:22:22 2009 user
* list_each implement, general usage
int idx;
declare value;
while ((idx = dict_list(lst, value, increment)) >= 0) {
}
Mon Oct 19 19:05:12 2009 user
* dict_each implemented, general usage
int idx;
string key;
declare value;
while ((idx = dict_each(dict, key, value)) >= 0) {
.. process element ..
}
Thu Oct 1 20:01:04 2009 user
* m_tokensize.c/regress.cr
- tokensize released.
- split numeric options published SPLIT_xxx.
* m_file.c
- override CR_MODE upon buffer type change.
* extra.cr/crisp.cr
- toggle_buffer_type(), note UFT8/16 modes listed yet not
fully supported within the primary engine.
Wed Sep 6 19:59:59 2009 user
* prelim vfs support released
- tar file reasdonly
Tue Jun 16 19:59:59 2009 user
* restore.cr
- Dont restore CRLOG_FILE when logging is enabled.
Wed May 6 14:34:43 2009 user
* ff.cr
- allow both new and older style "/r" argument processing
- bs() option processing mirrors ts().
Wed Apr 15 19:42:08 2009 user
* change.cr
- seek start of the first change entry, allowing leading text within
the file image, for example a HTML header.
* regress.cr
- Save and restore tabs settings
Tue Aug 11 23:58:09 2009 user
* grunch change summary (last months)
o general
- enum support, including numeric and string.
- struct/union support.
- enhanced basic types types (unsigned/signed etc) plus validations.
- C++ style variable non-block based declarations (beta).
o crmsg.c
- rebuilt message handling/reporting.
o crpragma.c
- basic pragma support.
o crlex.c
- rebuilt lexer numeric support.
o gram.y
- corrected set_property arguments.
* autoconf updates.
Thu Feb 19 22:57:28 2009 user
* display.c
- initialise global color table using startup.
Thu Nov 20 23:19:15 2008 user
* autoconf 2.63 updates
* TF_FEATURES
- TF_FGRAPHICCHARACTERS
Tue Nov 18 01:10:16 2008 user
* sys_unix.c
- CYWGIN removed 1001 ESC usage, as these are not supported which
in-turn caused corruption during terminal resets.
Thu Nov 13 21:54:53 2008 user
* debug.cr
- mvars, module variables.
* debug.c/macros.c
- Module variable access functionality.
* symbol.c
- sym_access() implementation common indirection support, supporting
both references and dynamic internal variables.
Tue Nov 11 00:46:08 2008 user
* set_margins/inq_margins implemented.
* Scroll bars
- set_ctrl_state() implemented.
- New terminal characters.
* Additional Mac OSX built support
* restore.cr
- reworked 'newfile' (BFILE) processing.
* rxvt.cr
- Additional keys added.
* crisp.cr
- altfunckeys(), using 'xterm-altfunckeys' remaps Alt-[0-9] to become
the function keys to support environments without mapped functions keys.
Sun Oct 26 18:25:17 2008 user
* Mac OSX built support (tested using 10.4.x)
- renamed regcomp and regexp to avoid clashes within the system
implementation.
- __APPLE__ compile option (neither unix nor __UNIX__ are defined).
Ref: http://developer.apple.com/technotes/tn2002/tn2071.html#Section5
- set_buffer_type/inq_buffer_type() implemented.
Thu Oct 23 01:44:00 2008 user
* mouse support enhanced
- get_mouse_pos([x], [y], [win], [line], [col], [where], [event])
New arguments win, line, col, where and event.
- mouse.cr reworked
Sun Oct 19 22:52:00 2008 user
Summary for past months work -
* New globals symbols
- S_IFxxx mode values.
- CRSTATE_FILE, CRINIT_FILE etc.
- current_line, current_col.
- current_window, current_buffer.
- O_xxx file modes (not currently used, future usage fopen()).
* main (-a) switch
* default arguments
- get_parm() extended to assign default when prompt is NULL and not
value is available (should consider a new parameter/function).
- regress.
* references
- ref_parm primitive.
- grunch enhancements.
- regress.
* m_symbol.c
- error handling improved.
* eval.c
Created get_xchar
Wed Aug 27 01:16:45 2008 user
* cry.y (summary for past months work) -
Grammar rewritten/updated
- References.
- Default arguments (beta).
- Prototypes.
- c99 extensions, allowing variable declarations to be
intermixed with statements (internally the variables are
*still* declared at the start of the block).
Function prototypes, major rework.
- Function now create symbols.
- Automatic declarations for all builtins.
- Corrected scoping errors during parameter declarations.
- Function redeclaration errors.
'array' base type added (to language; yet not supported by engine).
Thu Aug 7 22:12:24 2008 user
* autosave.cr, audit.cr
autosave_state() implementation.
Thu Jul 24 22:54:31 2008 user
* grunch (cry.y, crsubs.c and crgen.c)
Property support (i.e. dictionary.property), both get and set/assignment supported.
* keywd
Published dictionary primitives.
* pfloat
When processing only a single '.' the following character was incorrectly
consumed, uncovered whilst processing 'object.property' constructs.
Mon Jul 21 21:47:22 2008 user
* prim.mm
restore_position() documentation updated to reflect functionality.
* main.c
V = version
V = version and configuration
Sun Jul 6 16:52:25 2008 user
* dprintf
diagnostic print function
Thu Jul 3 23:23:35 2008 user
* restore.cr
reworked res_db_clean().
Mon Jun 30 23:58:15 2008 user
* features.cr
sysinfo, bufinfo.
Sun Dec 16 20:32:51 2007 user
* change.cr
New macros:
- change (shall log first encountered Changes or ChangeLog).
- changelog.
- changes.
Sat Nov 10 13:33:25 2007 user
* nc.cr
- Position cursor at parent directory when cd (..).
Mon Nov 5 23:57:15 2007 user
* language.c
- Unstack all input files upon an error condition. Failure to do so
caused next compile to fail unconditionaly.
Sun Nov 4 19:18:48 2007 user
Summary of previous changes;
* auditlog.cr, audit log support which was used to test the new
trigger and write_buffer functionality.
* save_position()/restore_position() primitive
- Save and optionally restore the current window and top-line.
* reregister_macro() primitive
- Only register if unique.
* new triggers,
Support for new triggers;
- REG_STARTUP, Startup complete.
- REG_BOOKMARK, Bookmark has been dropped/deleted.
- REG_INSERT_MODE, Insert mode has changed.
- REG_BUFFER_MOD, Buffer has been modified.
- REG_BUFFER_WRITE, Buffer write operation.
- REG_BUFFER_RENAME, Buffer rename operation.
- REG_BUFFER_DELETE, buffer delete operation.
- REG_FILE_SAVE, File write request (*).
- REG_FILE_WRITTEN, File write completion.
- REG_FILE_CHANGE, File external change (*).
- REG_SIGUSR, User signal (*).
- REG_UNDEFINED_MACRO, Undefined macro.
Note: Not all are implemented at this time.
* localtime()
- NULL implies current time.
* inq_system([int bufnum])
- [bufnum] support.
* write_buffer([string file-name], [int flags]),
- extended flags (WRITE_xxx).
* get_mouse_pos([int x], [int y], [int event])
- Added event parameter
* replacement keyword/grunch
* cftime()
- default format changed from %C to %c.
* lisp.c,
- Append list operations incorrectly adjusted the list storage
size, resulting to list asserts on next operation.
* crisp.cr,
- Save and restore untouched unknown configuration entries
within crinit.
- Allow criget interfaces to return a list of entries.
* backup.cr,
Allow backup directory selection based on the root of source
file, hence each project can have a seperate backup tree.
* ls.cr,
Modified select_buffer() usage.
General cleanup
Thu Mar 15 22:24:59 2007 user
* created 'menuoff' command.
Tue Mar 13 10:34:43 2007 user
* enhanced color support,
- set_color()/get_color().
- inq_color() documentation.
- set_color_pair()/get_color_pair() documentation.
* ts/fs,
- standardised parameter parsing.
Mon Feb 26 19:11:41 2007 user
* tty driver,
- underline support, --nounderline switch.
- enhanced cursor.
* macro source, removed warnings regarding nested comments.
wininfo.cr text.cr spell.cr history.cr bufinfo.cr change.cr
command.cr uspell.cr backup.cr sysinfo.cr
* xterm.c, improved AIX support.
- uname() usage
* version () primitive,
- upgraded parameter list.
version([maj], [min], [edit], [release], [machine], [compile], [compiler], [features])
was version([maj], [min], [edit], [compiled], [compiler], [features])
- sysinfo() version usage modified.
* uname () primitive created
Thu Feb 22 20:52:05 2007 user
* lock
- use and validate against full domain name, previouly it was stripped
durng processed and not exported.
- retry fuse within lock_ask() in case of broken tty during shutdown.
- include host/pid information within ask message.
Fri Feb 9 19:51:47 2007 user
* mode_string() primitive,
Encodes permission bits in a system-independent manor, this
the same/similar output to the Unix(tm) 'ls' command.
Updated nc and bufinfo macros.
TODO - Makes S_IFDIR (and others) a system defined 'const int'.
* cftime primitive()
* backup() macro
Allow subtree (dir) specific backup storage/configuration.
set_backup_option()/inq_backup_option() improvements.
Wed Jan 31 19:22:42 2007 user
* split,
- 'empties' option.
Thu Jan 25 19:33:33 2007 user
* file_match(),
character-class support
* register_name(),
must resolve macro, overlooked.
* backup.cr created
- crinit backup configuration support.
- rooted backup tree, allowing maintain of multiple backup arenas.
- recover() macro.
* end_anchor() testing/bugfixes/doco.
Tue Jan 16 23:16:47 2007 user
* crinit, backup entry,
set_backup_option() testing.
* sym_assign_fval,
removed implicit acc_assign_float which broke modf(), converted into
explicit assignment by callers.
* put_parm
- const checks.
- float support.
- conversion error message.
* const keyword (beta).
* <=> operator and compare() primitive.
* sort_list (beta).
* LPUT32/16 => LPUT_INT/PTR/ID/LEN conversion.
* lst_length.
* get_parm() and eval()
- improved error (conversion) handling.
- support for F_RSTR.
Wed Jan 10 21:39:33 2007 user
* uspell improvements (GUI Beta).
* spell_distance() primitive (for uspell usage).
* dialog bug-fixes.
Sun Dec 10 21:50:16 2006 user
* mktemp()
Sat Dec 9 01:27:13 2006 user
* inq_dialog()
Fri Dec 8 20:39:01 2006 user
* vim style modeline support (prelim)
- 'set xxx' support only.
* additional CrispEdit(tm) compatiblity (untested),
- filename_match() (aka file_match)
- filename_realpath() (aka realpath)
- require() (aka load_macro(noreload))
- inq_prompt() and inq_line_col()
- debug(.. [time])
- exist(.. [canon])
- inq_macro_history/set_macro_history,
modified home/end macros (misc.cr).
- command_list(),
flipped arg1 usage to match (was [include-macros]).
modes/cr.cr, command_list() usage.
* additional isaxxx() plus documentation,
- isalpha
- isascii
- iscsym
- isgraph
- isprint
* read(), eol/eof handling.
Wed Dec 6 20:07:19 2006 user
* basename() and dirname()
* file_expand cleanup
* set_backup_options/inq_backup_options,
- usage (what, [bufnum], parameter)
Sun Dec 3 14:25:14 2006 user