-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
8658 lines (5860 loc) · 277 KB
/
ChangeLog
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
2007-07-02 21:53 ajbj
* source/window.c (1.199): A couple of small mistakes caught by
Bert Wesarg.
2007-06-01 20:32 tringali
* source/nedit.c (REL-5-5.1): Backport ARGB fix to 5.5
2007-05-09 13:11 ajbj
* source/preferences.c (1.152): Changed "Complete Word" macro to
use \w instead of \l and changed its comments.
2007-03-18 08:54 yooden
* source/userCmds.c (1.55): Adds stdout/in/err help texts to Shell
Menu dialog, as pointed out in @discuss by Gerald Grabner.
2007-03-18 08:34 yooden
* source/text.c (1.54): Fix for SF#682004
This adds a call to BufSubstituteNullChars() when a control code
is self-inserted (as with ALT-CTRL-a, for example). (Fix from
Mark Geary.)
2007-03-04 23:54 yooden
* source/: file.c (1.110), window.c (1.198): Fix for SF#1645661
Another fixfix, this adds missing initializers for device/inode.
2007-03-04 23:44 yooden
* source/textDisp.c (1.69): Fix for SF#1608609
Some leftovers from fixing SF#464967/SF#1041077: The cursor is
now redrawn in all cases.
2007-03-04 23:26 yooden
* source/: file.c (1.109), preferences.c (1.151), tags.c (1.66),
window.c (1.197), window.h (1.31): Fix for SF#1578869
NEdit's old file-not-found dialog, while user-unfriendly, at
least did not crash. The new did, so this change removes the
Close button again.
Also localizes source/window.c:deleteDocument() from
DeleteDocument().
2007-03-04 23:17 yooden
* ReleaseNotes (1.56): Added three entries to release notes about
recently fixed bugs.
2007-03-02 00:01 ajbj
* source/preferences.c (1.150): Fixed #1574071 built-in macro "Make
C prototypes" doesn't work as suggested.
2007-01-30 19:42 arnef
* source/window.c (1.196): Fix for 1645223, 'nc -wait' doesn't work
when detaching/moving tab (from Bert Wesarg)
2007-01-30 13:51 ajbj
* source/interpret.c (1.47): Fixed unused macros PEEK_INT and
PEEK_STRING (for future use, if any).
2007-01-25 23:51 ajbj
* source/macro.c (1.113): Bert Wesarg's fix of #1640304: ident read
buffer overflow in parsing 'define'.
2007-01-15 14:04 ajbj
* source/interpret.c (1.46): Changed DEBUG_ASSEMBLY code to use new
instruction union from previous commit.
2007-01-12 22:44 tringali
* source/nedit.c (1.99): Disable warnings unless "-xwarn" debug
switch is passed in.
2007-01-12 16:17 tringali
* source/: interpret.c (1.45), interpret.h (1.20), parse.y (1.29),
parse_noyacc.c (1.10): SF 1625283: Replace nonportable casts with
unions
2007-01-07 13:18 yooden
* source/: textDisp.c (1.68), textDisp.h (1.30): Various cleanups:
- Makes a function in textDisp.c non-global. - Style - Add
"nedit:" to error messages - Comments
2007-01-04 01:42 yooden
* ReleaseNotes (1.55), doc/help.etx (1.106), source/macro.c
(1.112): This merges the two functions new_filename_dialog() and
exist_filename_dialog() to one new function filename_dialog().
The memory leak is also fixed, but the other bugs remain for now.
(Fix for pseudo-bug SF#1600022)
2007-01-04 00:10 yooden
* source/preferences.c (1.149): Replaces default macros 'Complete
Word' and 'Fill Sel. w/Char' with new alternatives by Jörg
Fischer.
(Fix for pseudo-bug SF#1578888)
2007-01-04 00:02 yooden
* util/misc.c (1.85): Fix for SF#1245502
This fixes two bugs pointed out in the tracker. One allows for :
as accelerators, the other fixes a wrong boolean.
2007-01-03 23:40 yooden
* ReleaseNotes (1.54), source/text.c (1.53): Fix for SF#1066692
If emulated tabs are on, make the inserted indent deletable by
tab. Round this up by faking the column a bit to the right to let
the user delete half-tabs with one keypress. (Thanks to Tony
Balinski)
2006-12-02 12:01 yooden
* source/: textBuf.c (1.36), textBuf.h (1.21), textDisp.c (1.67):
Some leftovers from the last two patches.
2006-12-02 10:27 yooden
* source/file.c (1.108), source/highlight.c (1.54),
source/highlightData.c (1.78), source/macro.c (1.111),
source/menu.c (1.138), source/preferences.c (1.148),
source/rangeset.c (1.17), source/search.c (1.85),
source/selection.c (1.32), source/shell.c (1.42),
source/smartIndent.c (1.40), source/textDisp.c (1.66),
source/textSel.c (1.17), source/userCmds.c (1.54),
source/window.c (1.195), util/fontsel.c (1.29), util/misc.c
(1.84): Removes a number of 'if (NULL == foo)' from XtFree. Also
changes some error messages from "NEdit:" to "nedit:" and minos
cleanup.
2006-12-02 09:38 yooden
* source/: file.c (1.107), highlight.c (1.53), interpret.c (1.44),
interpret.h (1.19), macro.c (1.110), textBuf.c (1.35), textBuf.h
(1.20), textDisp.c (1.65), textDisp.h (1.29): Makes a number of
parameters const, changes some types to Boolean and changes some
style.
2006-11-28 20:11 arnef
* source/window.c (1.194): Fix for #1525831
Initialise window->fileClosedAtom to None when creating new
Document. Thereby nc -wait doesn't return when closing file
opened in a tab
2006-11-22 21:16 yooden
* README (1.49): Adds comment about Linux linkage mode (now
dynamic, then static).
2006-11-22 20:59 yooden
* source/file.c (1.106): Changed type in fresh bug fix.
2006-11-22 15:13 yooden
* source/preferences.c (1.147): Adds the two styles Operator and
Bracket.
(Fix for pseudo-bug SF#1600018)
2006-11-22 14:16 yooden
* source/preferences.c (1.146): Fix for SF#1592236
Adds a missing downcast from const.
2006-11-22 13:45 yooden
* ReleaseNotes (1.53), doc/help.etx (1.105), source/macro.c
(1.109), source/nedit.h (1.68): This adds the special macro
variable $VERSION which returns NEdit's version number ('5006'
for NEdit 5.6).
(Fixes pseudo-bug #1576902)
2006-11-07 22:04 n8gray
* source/nedit.c (1.98): Changed the default mode of the
file-selection dialog to path-relative. It's more like what
people expect these days. Also changed the default size to
500x400. I would have made it bigger, but perhaps somebody out
there still uses 640x480...
2006-11-07 19:16 ajbj
* source/file.c (1.105): Fix for SF Bug #1588932 line number not
shown correctly
2006-11-02 13:24 edg
* source/file.c (1.104): Closed another path that could lead to the
crash of SF bug #1578869: hitting 'Close' in the dialog has the
same effect as closing the window via the window manager.
2006-10-29 22:22 edg
* ReleaseNotes (1.52), source/file.c (1.103): Fix for SF bug
#1578869: NEdit crashed on window close.
2006-10-29 13:23 yooden
* ReleaseNotes (1.51): Adds a ReleaseNotes entry for Scotts fix of
SF#1564907.
2006-10-26 22:09 edg
* source/highlightData.c (1.77): Python highlight pattern updates
(new keywords for 2.4 and 2.5).
2006-10-26 21:42 edg
* ReleaseNotes (1.50), source/nedit.c (1.97), util/misc.c (1.83):
Removed the apparently unreliable detection of problematic ARGB
visuals and set XLIB_SKIP_ARGB_VISUALS before opening the display
instead. This should solve SF bug #1579544 and duplicates
(#1030467, #1030192, ...).
2006-10-26 02:20 tringali
* makefiles/: Makefile.linux (1.14), Makefile.linux-static (1.1):
SF #1572838: Linux binary should be dynamic by default
2006-10-26 02:15 tringali
* source/nedit.c (1.96): Remove UTF8 from LC_CTYPE for OpenMotif
2.2.3, based on Eddy's experience
2006-10-20 15:44 ajbj
* doc/help.etx (1.104), source/smartIndent.c (1.39): Corrected
smart indent Type-in Macro usage information.
2006-10-17 13:00 yooden
* source/: text.c (1.52), window.c (1.193): Fix for #1543586
The fix for #906878 activated the cursor blink for any new pane.
This is now modified to be only called for active panes.
2006-10-17 12:39 yooden
* ReleaseNotes (1.49), source/nedit.c (1.95): Fox for SF#1525074
Motif menu accelerators prevent use of clipboard translations in
the i-search bar. This change removes accelerators, their job is
in turn done by text widget translations.
2006-10-17 11:52 yooden
* ReleaseNotes (1.48), source/search.c (1.84): Fix for SF#1508608
NEdit works slightly different on forward and backward searches.
This is fixed by letting a repeated search start at the beginning
of a selected search result instead of at the end.
2006-10-17 10:10 yooden
* ReleaseNotes (1.47), source/shift.c (1.18): Fix for SF#1333103
NEdit's case change always modified the buffer, even if replacee
and replacement were identical. This is now checked during the
casing, so that the replacement is only done if necessary.
(Thanks to Dimitar Zhekov)
2006-10-16 19:52 tringali
* util/motif.c (1.6): 0.95.0 has the menu unposting bug, too.
Verified with LessTif's test suite.
2006-10-16 14:26 yooden
* ReleaseNotes (1.46), source/highlightData.c (1.76),
source/preferences.c (1.145), source/preferences.h (1.55): Fix
for SF#1117848
A few more states are checked to find out whether the user is
working on a new syntax highlighting pattern, and make it usable
immediately.
2006-10-16 13:45 yooden
* doc/help.etx (1.103): Fix for SF#1046832
Adds an explanation for -untabbed mode.
2006-10-13 13:56 tringali
* util/motif.c (1.5): Add LessTif 0.94.4 to known-bad list
2006-10-13 07:26 ajbj
* source/: file.c (1.102), highlight.c (1.52), highlight.h (1.15),
macro.c (1.108), rangeset.c (1.16), rangeset.h (1.7), search.c
(1.83), search.h (1.28), shift.c (1.17), tags.c (1.65), textBuf.c
(1.34), textBuf.h (1.19), textDisp.c (1.64), textSel.c (1.16),
window.c (1.192): Extended use of BufAsString() and addition of
const: see SF bug 1528893.
2006-09-30 17:26 yooden
* source/nedit.c (1.94): Adds unistd.h to include files for
access().
2006-09-30 17:18 yooden
* doc/help.etx (1.102): Fixes another small documentation bug about
the use of single digit marks.
2006-09-30 17:07 yooden
* source/macro.c (1.107): Fix for fix for SF#1493662
This removes some spurious changes to get NEdit to compile under
Solaris.
2006-09-30 16:54 yooden
* ReleaseNotes (1.45), source/file.c (1.101): Fix for SF#1371896
NEdit sets the language mode for freshly-saved documents even if
the user chose a language mode already. This is changed.
2006-09-30 16:46 tringali
* doc/help.etx (1.101): Updated credits to be a bit more readable
2006-09-30 16:36 yooden
* ReleaseNotes (1.44), doc/help.etx (1.100), source/macro.c
(1.106), source/search.c (1.82): Fix for SF#1066765, #1078397,
#1110024, #1471868
Various documentation fixes, some reformating and a few text
changes in other parts of the code.
2006-09-30 16:29 yooden
* ReleaseNotes (1.43), source/file.c (1.100): Fix for SF#1066144
The "File not found" NEdt pops up when a document is focused
which file is missing is unfriendly to the user. This is fixed by
adding the most usual case (and removing one which is still
available elsewhere) and by slightly more detailed information.
2006-09-30 16:12 yooden
* ReleaseNotes (1.42), source/window.c (1.191), source/window.h
(1.30): Fix for SF#1055649
The window size is changed repeatedly if two document with large
difference in size are used in the same window. This is fixed by
giving all documents a gutter of the same size.
2006-09-30 16:09 tringali
* source/nedit.c (1.93): SF 1564907: guard against bogus XKEYSYMDB
2006-09-27 11:51 michaelsmith
* makefiles/buildvms.com (1.2), source/macro.c (1.105),
source/window.c (1.190): BUG #1395689 Patches to permit nedit to
be compiled under OpenVMS VMS compilation script and patches
contributed by zinser@zinser.no-ip.info
2006-08-22 13:23 yooden
* util/getfiles.c (1.36): Using Lesstif, util/getfiles.c compiled
only with a warning about a missing #include <Xm/TextF.h>.
2006-08-17 17:33 ajbj
* source/search.c (1.81): Fix for bug 1541650 where non-regex
replace-in-selection didn't work.
2006-08-15 21:16 yooden
* Microline/XmL/Folder.c (1.7), Microline/XmL/Tree.c (1.3),
source/menu.c (1.137), source/preferences.c (1.144): Removes some
compiler warnings and minor bugs on VMS.
It compiles and runs on Linux, I have no way to check it on VMS.
2006-08-15 18:55 ajbj
* source/: preferences.h (1.54), search.c (1.80): Made function
prototypes match their definitions (added "const"). This
corrects broken builds.
2006-08-15 18:36 ajbj
* source/preferences.c (1.143): Adds a line to the nedit.rc file
header commentary: ! (User settings in X "application defaults"
format) which allows copies to be recognised as X app default
files for syntax highlighting using the language detection regex
for X Resources.
2006-08-13 21:47 yooden
* source/: highlightData.c (1.75), preferences.c (1.142),
rangeset.c (1.15), regularExp.c (1.30), search.c (1.79): This
fixes several small issues: - Some bugs in various language modes
pointed out by Volker Kuhlmann. - Some compiler warning
(function footprint) caused from my latest changes. - Some
compiler warnings (variable initialisation) from elsewhere. -
One stuck return.
2006-08-13 18:41 yooden
* ReleaseNotes (1.41), doc/help.etx (1.99), source/file.c (1.99),
source/nedit.h (1.67), source/preferences.c (1.141),
source/preferences.h (1.53), source/window.c (1.189): Fix for
SF#1027788
On opening a symlink, NEdit as yet creates a new document. This
behaviour is now optional: If the new resource
nedit.honorSymlinks is set to false, NEdit will try to detect
whether the file is already opened with another filename.
2006-08-13 18:02 yooden
* ReleaseNotes (1.40), doc/help.etx (1.98), source/nedit.h (1.66),
source/preferences.c (1.140), source/preferences.h (1.52),
source/regularExp.c (1.29), source/regularExp.h (1.14),
source/search.c (1.78), source/search.h (1.27): Fix for
SF#1015499
An internal buffer limits the size of replace operation; the
result was truncated at 511 characters.
This change increases the buffer limit to 5119 characters and
prevents data loss by catching an already existing internal error
higher up the call chain. A new resource let's the user decide
how the error is handled then.
2006-08-12 13:40 yooden
* ReleaseNotes (1.39), doc/help.etx (1.97), source/file.c (1.98),
source/preferences.c (1.139), source/preferences.h (1.51): Fix
for SF#1003241
NEdit converts all open files into an internal Unix-like
representation. This mechanism is lacking for files which
contains both LF and CRLF.
This patch adds the resource 'nedit.forceOSConversion' which, if
set to False, prohibits all internal conversion. DOS and Mac
files are no longer conveniently editable, but the stranger file
types are editable at all.
2006-08-09 08:50 edg
* source/highlightData.c (1.74): Proper fix for part of SF bug
#1536451, correcting my previous attempt.
2006-08-08 18:06 tringali
* util/system.h (1.18): Updates for newer Solaris (sparc + x86)
boxes.
2006-08-08 10:59 edg
* ReleaseNotes (1.38), source/highlightData.c (1.73),
util/managedList.c (1.15): Fixes for SF bug #1536451:
highlighting pattern capacity overflow. Limits on the number of
patterns per set were not properly checked, or not checked at
all.
2006-08-07 15:41 edg
* ReleaseNotes (1.37), source/regularExp.c (1.28): Fix for SF bug
#1536002: highlighting pattern compilation crash. An invalid
size was used in a malloc call, causing memory corruption.
2006-08-06 18:34 edg
* util/getfiles.c (1.35): Workaround for a Lesstif bug that caused
a crash in the Save As dialog when a proportional font is used
(reported by Alexey Kuznetsov at the discuss list).
2006-05-31 16:39 n8gray
* source/macro.c (1.104): Added #include <limits.h> as potential
fix for SF #1493662. Also fixed an unused variable warning.
2006-04-21 21:13 ajbj
* source/: macro.c (1.103), textBuf.c (1.33), textBuf.h (1.18):
From patch 1191453: Avoiding buffer copying in macro search; use
the text buffer directly instead.
2006-04-11 06:29 n8gray
* source/window.c (1.188): Since I'm on a roll, this is TK's fix
for SF bug 1460456: Crash when saving over open file.
2006-04-11 01:14 n8gray
* doc/help.etx (1.96), source/help_data.h (1.86),
source/help_topic.h (1.75), source/macro.c (1.102),
util/getfiles.c (1.34), util/getfiles.h (1.11): Adds two new
(long overdue!) builtin functions to the macro language for
displaying file-selection dialogs: new_filename_dialog
exist_filename_dialog
Includes one unbracketed if statement, just as flamebait. :-)
2006-03-17 14:20 edg
* ReleaseNotes (1.36), util/getfiles.c (1.33): Fix for SF bug
#1451337: current file name does not appear in "save as" dialog
box
2006-03-17 10:05 edg
* util/misc.c (1.82): Suppressed one more usually bogus clipboard
locking warning.
2006-03-17 09:31 edg
* ChangeLog (1.43): Long overdue ChangeLog update (cvs2cl.pl -b -r
-t --accum --gmt).
2006-02-11 10:37 yooden
* ReleaseNotes (1.35), source/macro.c (1.101), util/utils.c (1.25),
util/utils.h (1.15): Fix for SF#622291
If a macro file is loaded with load_macro_file() (ie. from
another macro) and code segments alternate with function
definitions, the code segments were executed in reverse order.
This is fixed by adding a stack to store and reverse the plain
code segments.
2006-02-10 22:10 ajbj
* source/rangeset.c (1.14): Fixed broken "optimisation" - noticed
by TK Soh
2006-02-05 18:29 yooden
* makefiles/Makefile.solaris (1.11): Fix for SF#860249
Some reports indicate that setting NO_XMIM is the more useful
option on Solaris.
2006-02-05 16:31 yooden
* util/: utils.c (1.24), utils.h (1.14): This removes some bogus
'extern' declarations from util/utils.[ch].
2006-02-02 20:24 yooden
* source/: menu.c (1.136), preferences.c (1.138), preferences.h
(1.50), search.c (1.77): Fix for SF#1406894
I removed the shell setting from TempStringPrefs. While
PrefData.shell is touched in translatePrefFormats() (putting in
the default shell), there is no need to use the more complicated
storage.
Also included are some related small changes: - The menu entry
'Select Shell' is renamed to 'Command Shell'. - I removed the
arbitray restriction found in MAX_SH_LEN and replaced all
references with MAXPATHLEN.
2006-01-14 11:42 yooden
* source/file.c (1.97): Reorders the #include directives, as
pointed out by Martin Zinser.
2006-01-14 10:26 yooden
* source/menu.c (1.135): This moves the "Sort Open Prev. Menu"
entry into the "Customize Menus" submenu, as suggested by Dimitar
Zhekov on discuss@.
2006-01-02 23:10 yooden
* source/menu.c (1.134): Doh. For some reason it worked without
#include before.
2006-01-02 22:35 yooden
* ReleaseNotes (1.34), doc/help.etx (1.95), source/menu.c (1.133),
source/preferences.c (1.137), source/preferences.h (1.49),
source/shell.c (1.41): Fix for SF#403738 and SF#880607
This cleans up the shell problems by - bringing the shell setting
into NEdit's normal settings, removing it from the X server's
setting. - Changing the default shell to the user's login shell,
falling back on sh.
I also smuggled in a change to ReleaseNotes about SF#557032 I
forgot then.
2006-01-02 22:18 yooden
* source/file.c (1.96): Removes redundand #ifdefs within eponymous
#ifndefs.
2006-01-02 22:07 yooden
* source/menu.c (1.132): Cleanup for the recent changes on the
history database handling. This pulls together the file check on
the existing file on disk.
2005-12-28 22:19 tringali
* source/help.c (1.105): Fix incorrect reporting of bad vs.
unknown.
2005-12-27 20:55 yooden
* doc/help.etx (1.94): This cuts a long paragraph in the help into
multiple smaller paragraphs.
2005-12-18 03:46 tksoh
* source/menu.c (1.131): Fix premature setting of mtime tracking
variable on nedit.history file.
2005-12-17 19:23 yooden
* source/: menu.c (1.130), nedit.h (1.65), window.c (1.187): Fix
for SF#1381893
As TK pointed out in the original bug report (SF#557032),
internal state is not adequate to keep the file history
consistent if more than one session is running. Once you accept
that external state must be checked you don't need to keep
internal state at all.
So this patch removes the prevOpenMenuValid flag from WindowInfo
and the rest of the code. Validity of the menu is determined
using only the directory entry of the history file.
2005-12-14 23:08 yooden
* source/menu.c (1.129): Fix for SF#557032, based on TK's fix
attached there.
NEdit's file history is now read not only once at startup, but
also every time a file the history is written and before the menu
is refreshed. This catches files written by other instances of
NEdit.
2005-12-10 23:21 yooden
* source/textDisp.c (1.63): Fix for SF#1368576
The fix for SF#464967 increased the area processed by
redisplayLine() by one to let it know that the cursor should be
redrawn. This was done by increasing the endIndex given to
redisplayLine() by one. Sadly, endIndex is INT_MAX in some cases,
which prevented redisplays completely in certain cases. This fix
moves the incrementation to a saner place.
Neither the bugs fixed with SF#464967 nor any of the examples
given in SF#1368576's description are visible. Again, I notice no
drawbacks.
2005-12-01 14:31 tringali
* Xlt/: BubbleButton.c (1.9), BubbleButtonP.h (1.5), SlideC.c
(1.5), SlideCP.h (1.4): Revert out partoffset stuff - it's Motif
2 only. Need to rewrite so it's conditional
2005-11-30 17:52 tringali
* source/macro.c (1.100): Avoid crash if cancel accelerator is
unset.
2005-11-30 17:48 tringali
* Xlt/: BubbleButton.c (1.8), BubbleButtonP.h (1.4), SlideC.c
(1.4), SlideCP.h (1.3): Patch from ICS to do proper subclassing -
this will make it more immune to binary incompatible changes in
OpenMotif.
2005-11-29 20:37 n8gray
* source/smartIndent.c (1.38): Fix for bug #1369091. Matlab
autoindent init macro should end with a newline.
2005-11-28 22:43 yooden
* ReleaseNotes (1.33), source/highlightData.c (1.72): Fix for
SF#858874
There was a tiny typo in Ada's syntax highlighting pattern.
2005-11-28 21:51 yooden
* util/check_lin_tif.c (1.13): Removes a warning from GCC:
warning: ISO C89 forbids mixed declarations and code
This is simply done by wrapping blocks around the declarations.
2005-11-28 21:35 yooden
* ReleaseNotes (1.32): Adds comment about fix to SF#464967 and
SF#1041077 to ReleaseNotes.
2005-11-26 00:17 yooden
* source/textDisp.c (1.62): Fix for SF#464967.
The area redisplayed from within TextDRedisplayRange() is
appended by one character. This is necessary to let the logic in
redisplayLine() know that the caret should be redrawn (hasCursor
= true) which in turn triggers the redraw by calling drawCursor()
later in the function.
Both representations of the bug described in the bug report plus
two more for multi-line redraws are fixed. I noticed no
drawbacks.
2005-11-25 19:58 yooden
* util/misc.c (1.81):
MaCke sure we get no compile errors.VS: Committing in .
2005-11-20 06:48 n8gray
* util/misc.c (1.80): Make sure we get the prototype for select on
OS X systems.
2005-11-18 10:40 edg
* util/misc.c (1.79): Removed another unnecessary warning:
XmClipboardInquireLength() can legally fail when the clipboard is
empty.
2005-11-08 22:22 edg
* source/: file.c (1.95), nedit.h (1.64), window.c (1.186): Fix for
SF bug #1345424: externally changed file status not recognised.
The file's uid and gid are now recorded too to detect any
changes.
2005-09-23 14:23 edg
* util/misc.c (1.78): Partially reverted my previous checkin: the
empty clipboard check should not have been removed; only the
warning.
2005-09-23 14:18 edg
* util/misc.c (1.77): Removed an unnecessary warning:
XmClipboardRetrieve can legally fail when the clipboard is empty.
2005-09-23 14:08 tringali
* source/nedit.c (1.92): Disable UTF8 stomping where it's not a
problem (OM2.2.3+)
2005-08-13 19:29 edg
* source/macro.c (1.99), source/textSel.c (1.15), util/misc.c
(1.76), util/misc.h (1.28): Added clipboard spinlocks to make
clipboard manipulations more robust, especially in the presence
of other applications accessing the clipboard.
2005-08-06 04:56 tksoh
* source/window.c (1.185): Fixed bug where line number panel didn't
adjust to fully display the last line number (10000) when newline
was added, with 9999 lines in the tab before addition.
2005-08-06 04:31 tksoh
* source/nc.c (1.47): Fixed nc's prompt on -ask.
2005-07-30 18:05 edg
* source/server.c (1.33): Presumable fix for SF bug #1078786:
"-untabbed" option of nc sometimes ignored. The option now works
as intended with (older) window managers that are not _NET_WM
compliant.
2005-06-22 07:34 edg
* doc/help.etx (1.93), source/help_data.h (1.85),
source/help_topic.h (1.74): More documentation updates by Joerg
Fischer.
2005-06-20 10:54 edg
* doc/help.etx (1.92), doc/nedit.pod (1.9), source/help_data.h
(1.84), source/help_topic.h (1.73): More documentation updates by
Joerg Fisher.
2005-06-09 16:44 edg
* doc/help.etx (1.91), source/help_data.h (1.83),
source/help_topic.h (1.72): Typo fixes (Joerg Fischer).
2005-05-30 07:44 edg
* doc/help.etx (1.90), source/help_data.h (1.82),
source/help_topic.h (1.71): Typo fix (Joerg Fischer).
2005-05-27 16:58 edg
* source/regularExp.c (1.27): Fix for SF bug #1204893: regular
expressen cuts replaced textparts. A warning is now written to
stderr when truncation occurs. (Ideally, all errors and warnings
should be signaled via dialogs, but that requires architectural
changes).
2005-05-27 16:50 edg
* source/shell.c (1.40): Minor fix.
2005-05-27 16:49 edg
* README (1.48), Microline/XmL/Folder.h (1.3), Microline/XmL/Grid.h
(1.3), Microline/XmL/Progress.h (1.3), Microline/XmL/Tree.h
(1.3), Microline/XmL/XmL.c (1.3), Xlt/BubbleButton.c (1.7),
Xlt/BubbleButtonP.h (1.3), Xlt/SlideC.c (1.3), Xlt/SlideCP.h
(1.2), makefiles/buildvms.com (1.1), source/comnedit.com (1.10),
source/file.c (1.94), source/lnknedit.com (1.8), source/menu.c
(1.128), source/shell.c (1.39), source/window.c (1.184),
util/comutil.com (1.5): VMS porting fixes contributed by Michael
Smith.
2005-04-15 14:16 edg
* source/shell.c (1.38): Fix for SF bug#1183759: HP compiler
uninitialized variable. The variable isn't actually used when it
isn't initialized.
2005-03-23 12:34 edg
* Microline/Makefile (1.3), Microline/Makefile.in (1.3),
Xlt/Makefile (1.1): Fix for SF bug #1066152: Microline Widget
Library does not Compile Added a working makefile for the
Microline and Xlt subdirectories.
2005-03-06 15:38 tringali
* util/motif.c (1.4): Bug 1087192: avoid LessTif 0.93.95b
2005-03-03 14:49 edg
* doc/help.etx (1.89), doc/nc.pod (1.7), doc/nedit.pod (1.8),
source/help_data.h (1.81), source/help_topic.h (1.70),
source/nc.c (1.46), source/nedit.c (1.91): Added -h/-help command
line options and clarified warn-on-exit.
2005-02-24 18:23 edg
* source/highlightData.c (1.71): Extended C, C++, Yacc, and Lex
patterns to recognize strings inside preprocessor lines to avoid
erroneous matching of comment pattern on strings.
2005-02-23 03:00 ajbj
* source/preferences.c (1.136): Changed default line wrap mode to
continuous (SF bug 1124850, rfe 1087257).
2005-02-18 11:10 edg
* doc/help.etx (1.88), source/help_data.h (1.80),
source/help_topic.h (1.69): Minor clarification in regex help.
2005-02-16 07:18 n8gray
* source/menu.c (1.127): Makes unloadTipsAP refresh any existing
tear-offs.
2005-02-16 05:09 ajbj
* doc/help.etx (1.87), source/help_data.h (1.79),
source/help_topic.h (1.68): Added help information on the new
macro string escape sequences.
2005-02-16 03:44 ajbj
* source/: parse.y (1.28), parse_noyacc.c (1.9): Adds Patch 970487:
\xXX and \0ooo style escaped characters to macro strings.
Nothing in the help about this (yet).
2005-02-15 09:13 edg
* source/menu.c (1.126): Fix for SF bug #1122813: Tab-related crash
on posting unload calltips file menu.
2005-02-15 03:44 tringali
* util/: motif.c (1.3), motif.h (1.2): Added Motif exception to
license
2005-02-15 01:10 n8gray
* source/: menu.c (1.125), preferences.c (1.135), tags.c (1.64),
tags.h (1.16): Calltips files are now reference-counted. This
should address bug #1025123 - Error loading default calltips
file.
Fixing this uncovered another bug, however, that I haven't been
able to fix. I'll file a bug on it later.
Also, can somebody look at menu.c, compare unloadTagsAP with
unloadTipsAP, and address my comment on the latter?
2005-02-14 23:45 yooden
* util/motif.c (1.2): Removes warning.
2005-02-14 22:18 yooden
* source/nedit.c (1.90), util/prefFile.c (1.26): This sets the
maximum tab width to 150. This prevents some resizing of the
tabs, making the UI less jumpy. It is also what most users
probably expect from the tabs, since most apps work with tabs of
limited size.
This also slightly changes some error messages.
2005-02-14 14:40 tringali
* util/: motif.c (1.1), motif.h (1.1): Minor cleanup of Motif
checker to keep #ifdef's all in one place (part 2)
2005-02-12 12:04 edg
* util/misc.c (1.75): Fix for SF bug #1030467: "Enabling
Composite Extension in Xorg 6.8 breaks Nedit", presumably also
for SF bug #1048304: "Very slow resizing of Nedit window on
Xorg 6.8", and possibly also for SF bug #1070918: "new tab ->
Segmentation fault", and SF bug #1030192: "X_PolyFillRectange
error with X 6.8 and xcompmgr"
2005-02-12 01:53 tringali
* source/help.c (1.104), source/nedit.c (1.89),
util/Makefile.common (1.9), util/check_lin_tif.c (1.12): Minor
cleanup of Motif checker to keep #ifdef's all in one place.
2005-02-11 02:42 ajbj
* doc/help.etx (1.86), source/help_data.h (1.78),
source/help_topic.h (1.67), source/macro.c (1.98): Integrated
patch 1003088 allowing substring to drop the end position
argument. It also uses negative positions as measurements from
the end of the string.
2005-02-11 01:46 ajbj
* doc/help.etx (1.85), source/help_data.h (1.77),
source/help_topic.h (1.66), source/macro.c (1.97): Integrated
patch 991602, removing limits on the number of buttons in
dialogs.
2005-02-10 03:35 ajbj
* source/macro.c (1.96): Buffer length fixes to rangeset functions
I forgot when changing rangeset.c.
2005-02-06 12:31 yooden
* doc/help.etx (1.84): Changes documentation for the
replace_range() macro function. This function moves the cursor
when it is in the replaced range. In these cases, the cursor has
no clear best position, so a documentation is all we can do.
2005-02-02 09:15 edg
* source/textDrag.c (1.11): Added dummy initializations to suppress
bogus compiler warnings.
2005-02-02 09:08 edg
* source/nedit.c (1.88): Minor leak fix.