-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog.116
1397 lines (913 loc) · 43.1 KB
/
ChangeLog.116
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
Version 1.16.1 released
=======================
2000-07-31 Werner LEMBERG <[email protected]>
Preparing release 1.16.1.
* REVISION: Revision number set to 1.
* MORE.STUFF: Added info about port to DOS.
* NEWS, win32-diffs: Updated.
* src/include/nonposix.h: Remove first line -- this file is used
in C also.
* Makefile.in (dist): Delete Imakefile earlier to avoid a soft
link to it.
2000-07-30 Werner LEMBERG <[email protected]>
* doc/texinfo.tex: Update to latest version.
2000-06-28 Paul Eggert <[email protected]>
* Makefile.in (ENVSETUP): Don't assume POSIX make semantics for
commands that fail. Don't assume that "export a=b" is valid shell
syntax. This is needed for Solaris 2.5.1.
* src/libs/libgroff/tmpfile.cc, src/utils/indxbib/indxbib.cc: Fix
comment about missing Solaris headers.
* PROBLEMS: Add section about problems with Sun Make and VPATH.
2000-06-25 Werner LEMBERG <[email protected]>
* src/devics/grodvi/dvi.cc: Replace _setmode() (for MSC) with
SET_BINARY().
* src/include/posix.h: Use HAVE_UNISTD instead of _MSC_VER.
* win32-diffs: Updated.
* README.WIN32: Added CRs to make all Windows editors happy.
* src/roff/troff/node.cc: Added WIFSIGNALED() macro (copied from
src/roff/groff/pipeline.c).
2000-06-23 Eli Zaretskii <[email protected]>
* src/roff/grog/Makefile.sub (grog): Prepend `-e' to
$(SH_SCRIPT_SED_CMD), for the case where its value is empty.
2000-06-17 Eli Zaretskii <[email protected]>
* src/utils/tfmtodit/tfmtodit.cc: #include nonposix.h.
(tfm::load, gf::load): Open tfm and gf files in binary mode: these
are binary files.
(main): Support non-Posix systems with several different styles of
slash characters in file names.
* src/utils/pfbtops/pfbtops.c: #include nonposix.h.
(main) [SET_BINARY]: Switch stdin into binary mode.
* src/utils/indxbib/indxbib.cc: #include nonposix.h.
(main): Support file names with several possible slash-type
characters, as given by DIR_SEPS[] in nonposix.h.
(main) [__MSDOS__]: If renaming the temporary index file fails
because it has more than one dot in its trunk, replace the dot
with an underscore and try again.
(do_file): Use FOPEN_RB instead of "r". Skip every CR before a
Newline.
[__MSDOS__ || _MSC_VER]: Stop at the first ^Z character.
* src/utils/hpftodit/hpftodit.cc: #include nonposix.h.
(File::File): Open the input file in binary mode. Strip CR
characters from each CR-LF pair.
(xbasename): Support file names with several possible slash-type
characters, as given by DIR_SEPS[] in nonposix.h.
* src/include/Makefile.sub (HDRS): Add nonposix.h.
* src/roff/troff/node.cc [HAVE_UNISTD_H]: Include <unistd.h>.
(WIFEXITED, WEXITSTATUS, WTERMSIG, WIFSTOPPED, WSTOPSIG)
[!_POSIX_VERSION]: Define for traditional Unix systems.
(real_output_file::real_output_file): Remove the MSVC-specific
call to popen, use instead POPEN_WT, appropriately defined on
nonposix.h. #include nonposix.h.
(real_output_file::~real_output_file): Remove the MSVC-specific
call to pclose, a suitable macro is now defined on nonposix.h.
Use the portable macros WIFEXITED, WIFSIGNALED, WTERMSIG, WSTOPSIG
and WEXITSTATUS instead of assuming traditional Unix
interpretation of the status returned by pclose.
* src/roff/troff/input.cc (pipe_source): Remove the MSVC-specific
call to popen, use POPEN_RT instead (appropriately defined on
nonposix.h). #include nonposix.h.
(ps_bbox_request): Open the PostScript file in binary mode.
Close the file after processing it.
(getpid) [_MSC_VER]: Remove; a suitable macro is now defined on
nonposix.h.
* src/roff/groff/pipeline.c (run_pipeline) [__MSDOS__ || _WIN32]:
A version of run_pipeline that doesn't use `fork'.
(signal_catcher) [__MSDOS__ || _WIN32]: New function.
(system_shell_name, system_shell_dash_c)
(is_system_shell) [__MSDOS__ || _WIN32]: New functions, to hide
the ugliness of testing DOS/Windows file names for equality, and
support both stock shells and ports of Unix shells.
* src/roff/groff/groff.cc: #include nonposix.h.
(BSHELL): Definition moved to nonposix.h.
(main): Use PATH_SEP[0] instead of literal ':'. Use BSHELL_DASH_C
instead of a literal "-c".
(xbasename): Support file names with several possible slash-type
characters, as given by DIR_SEPS[] in nonposix.h.
(possible_command::print): Use BSHELL_DASH_C and IS_BSHELL instead
of literal strings.
* src/preproc/soelim/soelim.cc: #include nonposix.h.
(do_file): Use IS_ABSOLUTE instead of testing for a literal '/'.
* src/preproc/pic/Makefile.sub (YTABH): Change pic.tab.h to
pic_tab.h.
* src/preproc/pic/lex.cc: Change pic.tab.h to pic_tab.h.
* src/preproc/eqn/Makefile.sub (YTABH): Rename eqn.tab.h to
eqn_tab.h.
* src/preproc/eqn/lex.cc: #include eqn_tab.h, not eqn.tab.h.
* src/libs/libgroff/tmpfile.cc (DEFAULT_TMPDIR) [P_tmpdir]: If
P_tmpdir is defined, use it instead of the literal "/tmp".
(remove_tmp_files, add_tmp_file): New functions.
(xtmpfile): Record temporary files and register an atexit function
to delete them explicitly, instead of relying on the OS to do
that, which doesn't work on non-Unix systems.
* src/libs/libgroff/searchpath.cc: #include nonposix.h.
(search_path::search_path): Use PATH_SEP instead of a literal
colon.
(search_path::command_line_dir): Ditto.
(search_path::open_file): Use IS_ABSOLUTE, PATH_SEP and DIR_SEPS,
to support non-Posix systems.
* src/libs/libbib/search.cc: #include nonposix.h.
(search_list::add_file): Open the file in binary mode.
* src/libs/libbib/linear.cc: #include nonposix.h.
(file_buffer::load): Remove \r characters preceding \n from the
loaded buffer.
* src/libs/libbib/index.cc: #include nonposix.h.
(make_index_search_item): Open index_filename in O_BINARY mode.
(index_search_item_iterator::get_tag): Ditto. Remove \r
characters before \n characters.
(index_search_item::check_files): Open files in binary mode.
(index_search_item::munge_filename): Support DOS-style file names
with backslashes and drive letters, use IS_ABSOLUTE.
* src/devices/grops/ps.cc: #include nonposix.h.
(main) [SET_BINARY]: Switch stdout to binary mode.
* src/devices/grolj4/lj4.cc: #include nonposix.h.
(main) [SET_BINARY]: Switch stdout to binary mode.
* src/devices/grolbp/lbp.cc: #include nonposix.h
(fill_pattern) [SET_BINARY]: Switch stdout to binary mode.
* src/devices/grodvi/dvi.cc: #include nonposix.h.
[_MSC_VER]: Remove inclusion of Windows-specific headers (done by
nonposix.h).
(main) [SET_BINARY]: Switch stdout to binary mode.
[_MSC_VER]: Remove an explicit call to _setmode.
* src/include/nonposix.h: New file.
* Makefile.in (ENVSETUP): New variable, to set up case-sensitive
operation when building with DJGPP.
($(TARGETS), dot, $(LIBDIRS), $(CPROGDIRS), $(CCPROGDIRS))
($(DEVDIRS), $(TTYDEVDIRS), $(INCDIRS), $(OTHERDIRS)): Use
ENVSETUP.
* Makefile.comm: mv y.tab.[ch] to y_tab.[ch], to make it work on
MS-DOS.
(.man.n): Replace `;' with `|', since FONTPATH, MACROPATH,
etc. can include a semi-colon on DOS/Windows.
(depend.temp): Use depend1.temp instead of depend.temp1, to
prevent files from overerwiting each other on 8+3 filesystems.
* gendef.sh (t): Change definition to work with DOS/Windows.
doc/groff.texinfo: Apart of some typo corrections, I also changed
some index entris, to make them more non-ambiguous, and also put
@ignore around some parts that are not yet written, to allow the
Info output be readable.
2000-06-10 Gael Queri <[email protected]>
Replaced specific checks for function declarations with a generic
routine taken from GNU bfd.
* aclocal.m4 (GROFF_NEED_DECLARATION): New function.
GROFF_PUTENV, GROFF_POPEN, GROFF_PCLOSE, GROFF_HYPOT: Removed.
* configure.in: Use it.
* src/devices/grolbp/lbp.cc, src/include/lib.h,
src/preproc/grn/hgraph.cc, src/preproc/pic/pic.h,
src/roff/groff/groff.cc: Use it.
* Makefile.in, configure: Updated.
2000-06-07 Paco Andrés Verdú <[email protected]>
* src/devices/grolbp/lbp.h: Removed unused variables.
2000-05-31 Keith Thompson <[email protected]>
* src/devices/grolbp/lbp.cc (set_papersizes): Add declaration of
strncasecmp().
2000-05-31 Werner LEMBERG <[email protected]>
* aclocal.m4 (GROFF_SRAND): New function to test the return value
of srand() -- at least SunOS 4.1.3 uses `int' instead of `void'.
* configure.in: Use it.
* src/preproc/pic/pic.y, src/preproc/pic/pic.cc: Use it.
* configure, Makefile.in: Updated.
* configure.in: Add test for strncasecmp().
* src/include/lib.h: Use it.
2000-05-29 Andrej Borsenkow <[email protected]>
* src/preproc/grn/Makefile.sub: Add MLIB.
2000-05-29 Nix <[email protected]>
* Makefile.in: Use @datadir@ and @mandir@ appropriately.
2000-05-29 Werner LEMBERG <[email protected]>
* src/roff/grog/Makefile.sub, src/roff/grog/grog.sh: Add `@g@'.
* PROBLEMS: Small update.
* src/devices/grolbp/lbp.cc: Various small fixes.
2000-05-28 Keith Thompson <[email protected]>
* src/roff/nroff/nroff.sh: Fix main loop syntax.
* src/utils/indxbib/indxbib.cc: Add declaration of mkstemp().
2000-05-25 Werner LEMBERG <[email protected]>
* man/roff.man: Removed unused macro.
2000-05-24 Werner LEMBERG <[email protected]>
* Makefile.in (dist): Remove src/xditview/Imakefile explicitly.
This is needed e.g. if you do
`make distclean; ./configure; make dist'.
Version 1.16 released
=====================
2000-05-23 Werner LEMBERG <[email protected]>
Adding font CWI (constant width italic) to devdvi.
* font/devdvi/CWI: New file.
* font/devdvi/generate/Makefile: Add generating rule.
* font/devdvi/DESC.in, font/devdvi/Makefile.sub, win32-diffs,
tmac/tmac.dvi: Use it.
* NEWS: Announce it.
* font/devlj4/*: Regenerated (only adding kernings for `cq' glyph).
* font/devlj4/generate/Makefile: Cosmetic changes only.
* man/groff.man: Removed most of the redundant description of
special characters (which is in groff_char.man). Added font
translation CB->CR for devdvi. Other minor fixes.
* tmac/tmac.dvi: Improved appearance of \(co (copyright) and \(rg
(registered) symbols.
2000-05-22 Werner LEMBERG <[email protected]>
* doc/Makefile: Added rule for creating info files.
* font/devdvi/*: Added kernings for `cq' glyph. Updated to latest
AMS font metrics.
* font/devdvi/generate/Makefile: Fixed dependencies.
* font/devps/*: Regenerated. Heavy changes for Bookman and
NewCentury Schoolbook!
* font/devps/generate/afmname: Will now run with GNU awk.
* font/devps/generate/textmap: Added forgotten `cq' glyph name.
* font/devps/generate/Makefile: Cosmetic changes only.
2000-05-21 Werner LEMBERG <[email protected]>
* tmac/tmac.an: Added a new command line option `-rSxx' (`xx' can be
10, 11, or 12) to support output with 11pt and 12pt base font sizes.
`.SS' now produces a heading with a smaller size than `.SH'.
Completely formatted.
* doc/groff.texinfo, tmac/groff_man.man, NEWS: Document it.
* man/groff.man: Improved table appearance. Use of `eo' request
to reduce number of doubled backslashes in macro definitions.
Replacing `\e' with `\(rs'. Other minor fixes.
* src/preproc/tbl/main.cc: Insert HTML table end tag before `lf'
to have correct line number.
* INSTALL: Small improvement.
2000-05-20 Bernd Warken <[email protected]>
* man/roff.man, tmac/groff_tmac.man: Updates (with corrections by
WL).
2000-05-19 Bernd Warken <[email protected]>
* man/groff.man: Complete update (with a lot of corrections by WL).
2000-05-18 Werner LEMBERG <[email protected]>
Adding `cq' (PS name `quoteright') glyph name as an alias for "'".
* font/*/*: Implement it.
* man/groff_char.man, NEWS: Document it.
* src/include/unix.h: Removed. It isn't used.
* doc/groff.texinfo: Slight improvements.
2000-05-17 Werner LEMBERG <[email protected]>
* README, win32-diffs: Small fixes and improvements.
2000-05-16 Werner LEMBERG <[email protected]>
* FDL: New file (the Free Documentation License version 1.1).
* doc/groff.texinfo: Added many start-up values for gtroff.
Some structural improvements of the source code.
2000-05-15 Werner LEMBERG <[email protected]>
* src/roff/troff/input.cc: Added small comment about troffrc-end.
* src/roff/troff/troff.man: Added info about troffrc-end.
2000-05-14 Werner LEMBERG <[email protected]>
* Makefile.in (EXTRADIRS): Fix typos.
(dist): Handle deletion of old .tar.gz file correctly.
(DISTDIRS): Include all tty output devices.
* doc/groff.texinfo: Adding more cross references; countless other
fixes.
2000-05-13 Werner LEMBERG <[email protected]>
* MORE.STUFF: Added Robert Marks's utilities.
2000-05-12 Werner LEMBERG <[email protected]>
Added win32 port contributed by Blake McBride
* README.WIN32, win32-diffs: New files.
* NEWS: Updated.
* src/preproc/grn/hgraph.cc (HGSetBrush): Replace `%lf' with `%f'.
(tmove, tmove2): Added parentheses to avoid compiler warnings.
(change): Removed unused variables.
* src/preproc/grn/main.cc (main, conv): Removed unused variables.
(savebounds): Changed return value from `int' to `void'.
* src/preproc/grn/hdb.cc: Ditto.
* src/devices/grolbp/lbp.cc (lbp_printer::draw): Removed superfluous
final backslash in comment to avoid compiler warning.
* src/utils/pfbtops/pfbtops.c: Added `getopt.h'.
* doc/groff.texinfo: More fixes.
2000-05-11 OKAZAKI Tetsurou <[email protected]>
* tmac/tmac.doc: Documentation fix.
2000-05-11 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Reading the source code shows up a lot of
omissions and incorrect data... More conversion to @Deffn macros.
2000-05-10 Werner LEMBERG <[email protected]>
* src/roff/troff/reg.cc (number_value_to_ascii): Remove ASCII
dependency.
* src/roff/troff/request.h: Removing unused `no_break_flag'.
2000-05-09 Werner LEMBERG <[email protected]>
* man/groff.man, man/roff.man, tmac/groff_tmac.man: Minor
improvements.
* doc/groff.texinfo: Extended history section. More conversion to
@Deffn macros. More .tr documentation.
2000-05-07 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Completed tab section. Added info about
fields.
2000-05-06 Mike MacIsaac <[email protected]>
* PROBLEMS: Describe configure script fix for OS/390 Unix.
2000-05-05 Werner LEMBERG <[email protected]>
* font/devdvi/DESC.in: Change size 11pt to 10.95pt (as used in
LaTeX 2e).
* NEWS: Document it.
* man/troff.man: Minor optical improvements.
2000-05-03 Werner LEMBERG <[email protected]>
Adding `dq' (PS name `quotedbl') glyph name as an alias for `"'.
* font/*/*: Implement it.
* man/groff_char.man, NEWS: Document it.
2000-05-02 Werner LEMBERG <[email protected]>
* tmac/groff_tmac.man, man/groff.man, man/roff.man: Fixing @MANxEXT@
expansion.
* NEWS: Document the three new man pages.
* aclocal.m4 (GROFF_CXX_CHECK): Removing obsolete AC_C_CROSS call.
* configure: Updated.
* font/devcp1047/R.proto: Fixing fatal bug (a missing `"' character).
2000-05-01 Werner LEMBERG <[email protected]>
Added grap support to grog.
* src/roff/grog/grog.sh, src/roff/grog/grog.pl: Implement it.
* src/roff/grog/grog.man: Document it.
* doc/groff.texinfo, NEWS: Add info about grap support.
Add new man pages comptributed by Bernd Warken <[email protected]>
(with slight fixes by me).
* tmac/groff_tmac.man: New file documenting tmac mechanism.
* tmac/Makefile.sub: Add groff_tmac.man.
* man/roff.man: New file giving overview of roff system.
* man/troff.man: A short reference of troff.
* man/Makefile.sub: Add roff.man and troff.man.
2000-04-30 Werner LEMBERG <[email protected]>
Added grap support to groff.
* src/roff/groff/groff.cc: Implement it.
* src/roff/groff/groff.man: Document it.
* src/devices/grotty/grotty.man: Add cp1047 device.
* src/preproc/eqn/eqn.man, src/preproc/eqn/neqn.sh, tmac/eqnrc:
Ditto.
* src/roff/groff/groff.man: Ditto.
* src/roff/nroff/nroff.sh, src/roff/nroff/nroff.man: Ditto.
* doc/groff.texinfo: Ditto.
* tmac/troffrc: Fix mapping of latin-1 char 160 (non-breakable space)
for cp1047.
2000-04-29 Werner LEMBERG <[email protected]>
* man/groff_char.man: Add `pc' glyph.
* tmac/tmac.latin1: Replacing `md' glyph with `pc'.
* tmac/tmac.tty: Add `pc' glyph.
* tmac/tmac.tty-char: Use/add `pc' glyph. Don't call tmac.latin1 if
we use cp1047 output device.
* Makefile.in, aclocal.m4: Don't build utf8 on EBCDIC hosts since
there are still hardcoded latin1->unicode values in utf8's font
definition files.
* configure: Updated.
* NEWS: Minor clarification. Updated.
* PROBLEMS: Formatted. Added info about C++ fix pack for OS/390
Unix.
2000-04-28 Werner LEMBERG <[email protected]>
Adding EBCDIC code page 1047.
* font/devcp1047/R.proto, font/devcp1047/Makefile.sub,
font/devcp1047/DESC.proto: New files.
* aclocal.m4 (GROFF_EBCDIC): Introduce TTYDEVDIRS which can be
either ascii/latin1 or cp1047.
* Makefile.in: Use it.
* configure: Updated.
Replacing and/or adding `md' (mathdot) glyph with `pc'
(periodcentered) in all text fonts.
* font/*/*: Change it.
2000-04-27 Werner LEMBERG <[email protected]>
* aclocal.m4 (GROFF_OS390): Fixing compiler flags.
* configure.in: Add check for strings.h.
* src/include/driver.h: Use HAVE_STRINGS_H.
* src/devices/grolbp/lpb.cc: Remove string.h.
* src/include/groff-getopt.h: New file. It will be used instead of
getopt.h (to be included in lib.h) to avoid endless problems with
picky C++ compilers.
* src/include/lib.h: Use groff-getopt.h.
* src/include/Makefile.sub: Updated.
* configure: Updated.
* Makefile.in: Updated.
* NEWS: Mention EBCDIC support.
2000-04-26 Werner LEMBERG <[email protected]>
* TODO: Some additions.
2000-04-25 Werner LEMBERG <[email protected]>
* src/roff/troff/troff.man, doc/groff.texinfo: Fixing documentation
of mso request.
2000-04-23 Werner LEMBERG <[email protected]>
* src/roff/troff/troff.man: Minor fixes.
2000-04-22 Werner LEMBERG <[email protected]>
* src/roff/troff/troff.man, doc/groff.texinfo, NEWS: Document the
`.T' string register and the incompatible definition of the `.T'
number register (compared to Unix troff).
* man/groff_char.man: Add some missing characters.
* font/devutf8/NOTES: Update.
2000-04-21 Werner LEMBERG <[email protected]>
* src/include/htmlindicate.h, src/include/lib.h,
src/include/posix.h: Fix copyright.
* src/include/Makefile.sub: Update.
2000-04-20 Werner LEMBERG <[email protected]>
* src/roff/troff/input.cc (input_char_description): Removing
superfluous space char.
* tmac/tmac.X: Fix typo \(bq -> \(Bq.
* doc/groff.texinfo: Document EBCDIC.
2000-04-19 Werner LEMBERG <[email protected]>
Introducing `shc' as the glyph name for the soft hyphen character.
* tmac/tmac.tty, tmac/tmac.latin1, tmac/tmac.html,
font/devlatin1/R.proto: Use it.
* NEWS: Updated.
2000-04-18 Werner LEMBERG <[email protected]>
* src/devices/grops/ps.cc (ps_printer::flush_sbuf): Removing
dependency on ASCII order.
2000-04-16 Sandor BARANY <[email protected]>
* src/libs/libgroff/illegal.c: Added EBCDIC table.
* src/roff/troff/input.cc: Added adaptation to EBCDIC.
* src/preproc/refer/refer.cc, src/roff/troff/env.cc: Minor changes
to increase portability.
2000-04-15 Werner LEMBERG <[email protected]>
* aclocal.m4: Added GROFF_EBCDIC and GROFF_OS390 tests.
Redefined AC_OUTPUT_MAKE_DEFS to replace ASCII character `012' with
the generic `\n' if under OS/390 Unix.
* configure.in: Call GROFF_EBCDIC and GROFF_OS390.
* configure: Regenerated.
2000-04-14 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: More conversions to @Deffn.
2000-04-12 Werner LEMBERG <[email protected]>
* tmac/tmac.psfig: Fix incorrect use of `&' operator by replacing it
with `:'.
* src/roff/nroff/nroff.man: Add note about tmac.tty-char.
2000-04-10 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: More conversions to @Deffn.
2000-04-08 Werner LEMBERG <[email protected]>
* src/libs/libgroff/{getopt.c,getopt1.c}, src/include/getopt.h:
Updated to latest version (glibc 2.1.3).
2000-04-07 Werner LEMBERG <[email protected]>
* doc/Makefile (clean): Include more index files.
Add rule texinfo->dvi.
2000-04-05 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Added new index `op' for operators. More
info on end of sentence characters. More use of @Deffn.
2000-03-30 Werner LEMBERG <[email protected]>
* */*.man: Adding a note that a whitespace can be inserted between
a command line option and its parameter -- we are using GNU getopt.
* src/roff/groff/groff.man: Add example of `-m mandoc'.
2000-03-28 Werner LEMBERG <[email protected]>
Correct anachronism of calling the man macro file with `-man'
instead of `-m man' etc.
* tmac/tmac.man, tmac/tmac.mandoc, tmac/tmac.markup, tmac/tmac.mdoc,
tmac/tmac.me, tmac/tmac.ms: New files tmac.m<package> which simply
load tmac.<package>.
* tmac/Makefile.sub: Updated. Take care of $(tmac_an_prefix) etc.
* NEWS: Updated.
* doc/groff.texinfo: Updated.
* tmac/groff_man.man: Copyright added.
2000-03-27 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Introducing macros `Deffn' and `Defmac' to
typeset the request resp. escape name with a tt font -- due to a
bug in texinfo.tex it is necessary to use the `-e' switch with
texi2dvi.
Improving info about usage of groff units.
Other minor fixes.
2000-03-20 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Added section about man macro package
(I've basically taken groff_man.man). Introducing new indices `ma'
for macros/strings and `gl' for glyph names. Other minor fixes.
* tmac/groff_man.man: Fixed some typos.
2000-03-19 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Removed all occurrences of `you', `we', etc.
Other minor fixes.
* doc/texinfo.tex: New file.
2000-03-18 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Improved section on number registers. Other
minor updates.
2000-03-16 Werner LEMBERG <[email protected]>
* src/roff/groff/groff.man: Added info about grolbp. Make nicer
synopsis.
* src/devices/grolbp/grolbp.man, src/roff/nroff/nroff.man,
src/devices/grolj4/grlj4.man, src/devices/grops/grops.man,
src/preproc/eqn/eqn.man, src/utils/afmtodit/afmtodit.man,
src/utils/tfmtodit/tfmtodit.man: Make nicer synopsis.
* src/preproc/grn/grn.man: Better synopsis; added copyright.
* src/roff/grog/grog.man: Updated copyright date.
2000-03-14 Francisco Andrés Verdú <[email protected]>
* configure.in: Added test for strdup.
* src/devices/grolbp/lbp.cc: Added a strdup() version in case none
is available.
Replaced dynamic allocation of arrays `[...]' with `new' operator.
Other minor fixes.
2000-03-12 OKAZAKI Tetsurou <[email protected]>
* Makefile.comm: Add $(INCLUDES) to $(ALL_CFLAGS).
2000-03-11 Werner LEMBERG <[email protected]>
* src/preproc/grn/hdb.cc (DBGetType): Added return value to make
compilers silent.
* src/preproc/grn/hgraph.cc: Add #ifdef for hypot().
* src/include/lib.h: Remove some spaces.
2000-03-10 Werner LEMBERG <[email protected]>
* src/libs/libgroff/tmpfile.cc (xtmptemplate, xtmpfile): Removing
initializers from arguments (some compilers don't like this).
2000-03-09 Gaius Mulley <[email protected]>
* src/libs/libgroff/htmlindicate.cc: Added library file which is now
used by pic and eqn to tell grohtml where the graphic regions start
and end.
* src/libs/libgroff/Makefile.sub: Use it.
* src/preproc/eqn/main.cc, src/preproc/pic/troff.cc: Altered to use
graphic_start() and graphic_end() from htmlindicate.cc.
2000-03-09 Werner LEMBERG <[email protected]>
* tmac/tmac.safer: Will now work correctly in compatibility mode.
* tmac/groff_man.man: More fixes.
2000-03-08 Werner LEMBERG <[email protected]>
* doc/Makefile: Added texput.log to the `clean' target.
* doc/groff.texinfo: Added info about delimiters for escapes.
2000-03-08 Bernd Warken <[email protected]>
* src/preproc/pic/pic.man: Add info on conversion of pic images to
other graphic formats.
2000-03-07 OKAZAKI Tetsurou <[email protected]>
* Makefile.in, Makefile.sub, src/preproc/eqn/Makefile.sub,
src/roff/groff/Makefile.sub, src/roff/nroff/Makefile.sub,
src/utils/afmtodit/Makefile.sub: Use $(INSTALL_SCRIPT) for script
files.
2000-03-07 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Spelling fixes.
2000-03-06 Werner LEMBERG <[email protected]>
* tmac/groff_man.man: Completely revised to cover everything in
tmac.an.
* doc/groff.texinfo, src/roff/troff/troff.man: Document evc request.
Other minor fixings.
* src/roff/troff/env.cc (environment_copy): Improve error message and
fix itoa->i_to_a.
* src/roff/troff/TODO: Updated.
* doc/Makefile: Bug fixes -- this is still provisional, though...
* tmac/eqnrc: Small fixes.
2000-03-05 Abramo Bagnara <[email protected]>
Adding a request `evc' to copy environments.
* src/roff/troff/env.cc (environment::copy, environment_copy):
Implement it.
* src/roff/troff/env.h: Add prototype.
2000-03-05 Francisco Andrés Verdú <[email protected]>
Adding strsep() -- Solaris 8 doesn't have it.
* configure.in: Test it.
* src/devices/grolbp/lbp.cc: Add code.
2000-03-05 Werner LEMBERG <[email protected]>
* src/roff/troff/div.cc (macro_diversion::output,
top_level_diversion::output): Fixing an incompatibility with
original troff: \x'0' updates the .a register also. Thanks to
<[email protected]> for pointing this out.
* doc/groff.texinfo: Document it.
* Makefile.in: Create Makefile.dep if necessary before calling the
submake process to avoid warning about nonexistent file.
* NEWS, PROJECTS: Updated.
2000-03-04 Werner LEMBERG <[email protected]>
* tmac/troffrc: Add tmac.lbp.
2000-03-03 Francisco Andrés Verdú <[email protected]>
* tmac/tmac.lbp: New file.
* src/devices/grolbp/grolbp.man: Add documentation of `lbpname'
command.
2000-03-03 Werner LEMBERG <[email protected]>
* Makefile.in: Fixing $(subdir).
* README, NEWS: Small fixes.
* test-groff: Adding path to grolbp.
* configure.in: The (new) file src/xditview/Imakefile.in will be
also configured -- it is now possible to build gxditview in a
directory different from $srcdir.
2000-03-02 Blake McBride <[email protected]>
* src/libs/libgroff/searchpath.cc (open_file): Adapting to WinNT.
* MORE.STUFF: Added website of bell labs and info about plot2dev.
2000-03-01 Colin Phipps <[email protected]>
* src/utils/indxbib/indxbib.cc (main): Use mkstemp() for temporary
files.
2000-02-29 Werner LEMBERG <[email protected]>
Adding GNU getopt to the groff distribution.
* src/include/getopt.h, src/libs/libgroff/{getopt.c,getopt1.c}:
New files.
* src/include/Makefile.sub, src/libs/libgroff/Makefile.sub: Update.
* aclocal.a4: Remove GROFF_GETOPT function.
* configure.in, Makefile.in, PROBLEMS: Update.
* src/include/lib.h: Replace getopt tests with getopt.h.
* src/devices/grolbp/lpb.cc: Remove inclusion of getopt.h.
* doc/groff.texinfo: Further checking/updating. Adding more index
entries.
* man/groff_out.man: Fix nroff mode activation (for emacs).
* man/groff_font.man: Add missing ligature.
2000-02-28 Werner LEMBERG <[email protected]>
* doc/groff.texinfo: Further checking/updating. Adding more index
entries.
* src/devices/grolbp/grolbp.man: Added a comment line at the
beginning of the file (similar to shell scripts) which indicates
that `tbl' should be used as a preprocessor.
2000-02-27 Blake McBride <[email protected]>
Adapting groff to MS Visual C++ 6.0 compiler (tested with
Windows NT 4.0). Uses _MSC_VER define where necessary.
* src/devices/grodvi/dvi.cc: Making stdout a binary stream.
* src/devices/grolj4/lj4.cc: Making getopt variables `extern "C"'.
* src/devices/grohtml/html.cc, src/devices/grops/ps.cc,
src/include/lib.h, src/libs/libgroff/errarg.cc,
src/libs/libgroff/itoa.c, src/libs/libgroff/nametoindex.cc,
src/preproc/refer/label.y, src/preproc/refer/label.cc,
src/roff/groff/pipeline.c, src/roff/troff/column.cc,
src/roff/troff/div.cc, src/roff/troff/env.cc,
src/roff/troff/input.cc, src/roff/troff/node.cc,
src/roff/troff/reg.cc: Renaming itoa() to i_to_a() and iftoa() to
if_to_a() to avoid name clashes.
* src/include/posix.h: Don't use unistd.h.
* src/libs/libgroff/tmpfile.cc: Use `#ifndef...#else...#endif'
clause for integrating non-Unix xtmpfile() code.
* src/roff/troff/input.cc: Adding `public' keyword to macro_header
structure; use "rt" for popen() in pipe_source(); add getpid()
dummy function.
* src/roff/troff/node.cc: Use special versions of popen() in
real_output_file() and pclose() in ~real_output_file().
2000-02-27 Werner LEMBERG <[email protected]>
Adding a new driver, grolbp, for Canon CAPSL printers (LBP-4 and
LBP-8 series laser printers). This code has been contributed by
Francisco Andrés Verdú <[email protected]>.
* src/devices/grolbp/*: The grolbp output device.
* font/devlpb/*: The font description files.
* Makefile.in: Add grolpb and devlbp subdirectories.
* src/devices/grodvi/grodvi.man, src/devices/grolj4/grolj4.man,
src/devices/grotty/grotty.man,src/roff/troff/troff.man: Minor
typographic fixes.
* doc/groff.texinfo: Further checking/updating. Adding more index
entries.
* NEWS: Updated.
* src/devices/grolbp/Makefile.sub: Adding $(srcdir).
* man/groff_font.man: Adding info about obsolete DESC keywords.
* src/devices/grolj4/grolj4.man: Documenting additional DESC
keywords.
2000-02-26 Werner LEMBERG <[email protected]>
* src/preproc/grn/grn.man: Added info about the gremlin file format
(contributed by Daniel Senderowicz <[email protected]>).
2000-02-25 Werner LEMBERG <[email protected]>
* src/preproc/grn/main.cc: Allow values of `narrow' parameter and
friends to be non-integer.
* src/preproc/grn/grn.man: Document it.
* doc/groff.texinfo: Further checking/updating. Adding more index
entries.
2000-02-24 Werner LEMBERG <[email protected]>
* src/preproc/grn/main.cc: Introduce BASE_THICKNESS, defining
line thicknesses to be integer multiples of this value.
* src/preproc/grn/grn.man: Commenting out the -s option -- the
corresponding code doesn't work (yet).
* doc/groff.texinfo: Further checking/updating. Adding more index
entries.
2000-02-23 Werner LEMBERG <[email protected]>
* src/preproc/grn/{main.cc, hgraph.cc}: Using point units to
specify line thickness instead of base units. The new default
values are now 0.15,pt 0.45pt, and 0.75pt for thin, middle, and
thick lines respectively.
Removed unused variable `prevval'.
* src/preproc/grn/grn.man: Updated.
2000-02-22 Werner LEMBERG <[email protected]>
* src/preproc/grn/main.cc: Slight formatting.
* src/roff/groff/groff.man: Formatting fix.
* src/preproc/grn/grn.man: Ditto.
* src/roff/grog/grog.pl: Fixing two embarrassing bugs.
* doc/groff.texinfo: Further checking/updating.
2000-02-21 Werner LEMBERG <[email protected]>
* README, INSTALL, PROJECT, PROBLEMS, BUGREPORT: Updated.
* test-groff: Added grn subdir to path.
* doc/groff.texinfo: Some restructing and other small improvements.
* src/roff/groff/groff.cc (help): Fixed info string.
2000-02-20 Werner LEMBERG <[email protected]>
* doc/meref.me: Fix description of .GS request.
* src/roff/troff/troff.man: Fixing typo.
Adding the `grn' preprocessor for gremlin graphic files.
* src/preproc/grn/*: This is the Berkeley distribution written by
David Slattengren and Barry Roitblat, adapted to groff by Daniel
Senderowicz and Werner Lemberg.
* doc/grnexampl.{me,g}: A sample for grn.
* Makefile.in: Added subdirectory entry for grn.
* src/roff/groff/groff.cc: Added support for grn. It can be now
called with the switch `-g'.
* src/roff/groff/groff.man: Updated.
* src/roff/grog/grog.{man,pl,sh}: Updated.
* NEWS: Updated.