/contrib/groff/ChangeLog.116

https://bitbucket.org/freebsd/freebsd-head/ · Unknown · 1388 lines · 906 code · 482 blank · 0 comment · 0 complexity · e96251f123d8b8edb590325b2e7e46cb MD5 · raw file

  1. Version 1.16.1 released
  2. =======================
  3. 2000-07-31 Werner LEMBERG <wl@gnu.org>
  4. Preparing release 1.16.1.
  5. * REVISION: Revision number set to 1.
  6. * MORE.STUFF: Added info about port to DOS.
  7. * NEWS, win32-diffs: Updated.
  8. * src/include/nonposix.h: Remove first line -- this file is used
  9. in C also.
  10. * Makefile.in (dist): Delete Imakefile earlier to avoid a soft
  11. link to it.
  12. 2000-07-30 Werner LEMBERG <wl@gnu.org>
  13. * doc/texinfo.tex: Update to latest version.
  14. 2000-06-28 Paul Eggert <eggert@twinsun.com>
  15. * Makefile.in (ENVSETUP): Don't assume POSIX make semantics for
  16. commands that fail. Don't assume that "export a=b" is valid shell
  17. syntax. This is needed for Solaris 2.5.1.
  18. * src/libs/libgroff/tmpfile.cc, src/utils/indxbib/indxbib.cc: Fix
  19. comment about missing Solaris headers.
  20. * PROBLEMS: Add section about problems with Sun Make and VPATH.
  21. 2000-06-25 Werner LEMBERG <wl@gnu.org>
  22. * src/devics/grodvi/dvi.cc: Replace _setmode() (for MSC) with
  23. SET_BINARY().
  24. * src/include/posix.h: Use HAVE_UNISTD instead of _MSC_VER.
  25. * win32-diffs: Updated.
  26. * README.WIN32: Added CRs to make all Windows editors happy.
  27. * src/roff/troff/node.cc: Added WIFSIGNALED() macro (copied from
  28. src/roff/groff/pipeline.c).
  29. 2000-06-23 Eli Zaretskii <eliz@is.elta.co.il>
  30. * src/roff/grog/Makefile.sub (grog): Prepend `-e' to
  31. $(SH_SCRIPT_SED_CMD), for the case where its value is empty.
  32. 2000-06-17 Eli Zaretskii <eliz@is.elta.co.il>
  33. * src/utils/tfmtodit/tfmtodit.cc: #include nonposix.h.
  34. (tfm::load, gf::load): Open tfm and gf files in binary mode: these
  35. are binary files.
  36. (main): Support non-Posix systems with several different styles of
  37. slash characters in file names.
  38. * src/utils/pfbtops/pfbtops.c: #include nonposix.h.
  39. (main) [SET_BINARY]: Switch stdin into binary mode.
  40. * src/utils/indxbib/indxbib.cc: #include nonposix.h.
  41. (main): Support file names with several possible slash-type
  42. characters, as given by DIR_SEPS[] in nonposix.h.
  43. (main) [__MSDOS__]: If renaming the temporary index file fails
  44. because it has more than one dot in its trunk, replace the dot
  45. with an underscore and try again.
  46. (do_file): Use FOPEN_RB instead of "r". Skip every CR before a
  47. Newline.
  48. [__MSDOS__ || _MSC_VER]: Stop at the first ^Z character.
  49. * src/utils/hpftodit/hpftodit.cc: #include nonposix.h.
  50. (File::File): Open the input file in binary mode. Strip CR
  51. characters from each CR-LF pair.
  52. (xbasename): Support file names with several possible slash-type
  53. characters, as given by DIR_SEPS[] in nonposix.h.
  54. * src/include/Makefile.sub (HDRS): Add nonposix.h.
  55. * src/roff/troff/node.cc [HAVE_UNISTD_H]: Include <unistd.h>.
  56. (WIFEXITED, WEXITSTATUS, WTERMSIG, WIFSTOPPED, WSTOPSIG)
  57. [!_POSIX_VERSION]: Define for traditional Unix systems.
  58. (real_output_file::real_output_file): Remove the MSVC-specific
  59. call to popen, use instead POPEN_WT, appropriately defined on
  60. nonposix.h. #include nonposix.h.
  61. (real_output_file::~real_output_file): Remove the MSVC-specific
  62. call to pclose, a suitable macro is now defined on nonposix.h.
  63. Use the portable macros WIFEXITED, WIFSIGNALED, WTERMSIG, WSTOPSIG
  64. and WEXITSTATUS instead of assuming traditional Unix
  65. interpretation of the status returned by pclose.
  66. * src/roff/troff/input.cc (pipe_source): Remove the MSVC-specific
  67. call to popen, use POPEN_RT instead (appropriately defined on
  68. nonposix.h). #include nonposix.h.
  69. (ps_bbox_request): Open the PostScript file in binary mode.
  70. Close the file after processing it.
  71. (getpid) [_MSC_VER]: Remove; a suitable macro is now defined on
  72. nonposix.h.
  73. * src/roff/groff/pipeline.c (run_pipeline) [__MSDOS__ || _WIN32]:
  74. A version of run_pipeline that doesn't use `fork'.
  75. (signal_catcher) [__MSDOS__ || _WIN32]: New function.
  76. (system_shell_name, system_shell_dash_c)
  77. (is_system_shell) [__MSDOS__ || _WIN32]: New functions, to hide
  78. the ugliness of testing DOS/Windows file names for equality, and
  79. support both stock shells and ports of Unix shells.
  80. * src/roff/groff/groff.cc: #include nonposix.h.
  81. (BSHELL): Definition moved to nonposix.h.
  82. (main): Use PATH_SEP[0] instead of literal ':'. Use BSHELL_DASH_C
  83. instead of a literal "-c".
  84. (xbasename): Support file names with several possible slash-type
  85. characters, as given by DIR_SEPS[] in nonposix.h.
  86. (possible_command::print): Use BSHELL_DASH_C and IS_BSHELL instead
  87. of literal strings.
  88. * src/preproc/soelim/soelim.cc: #include nonposix.h.
  89. (do_file): Use IS_ABSOLUTE instead of testing for a literal '/'.
  90. * src/preproc/pic/Makefile.sub (YTABH): Change pic.tab.h to
  91. pic_tab.h.
  92. * src/preproc/pic/lex.cc: Change pic.tab.h to pic_tab.h.
  93. * src/preproc/eqn/Makefile.sub (YTABH): Rename eqn.tab.h to
  94. eqn_tab.h.
  95. * src/preproc/eqn/lex.cc: #include eqn_tab.h, not eqn.tab.h.
  96. * src/libs/libgroff/tmpfile.cc (DEFAULT_TMPDIR) [P_tmpdir]: If
  97. P_tmpdir is defined, use it instead of the literal "/tmp".
  98. (remove_tmp_files, add_tmp_file): New functions.
  99. (xtmpfile): Record temporary files and register an atexit function
  100. to delete them explicitly, instead of relying on the OS to do
  101. that, which doesn't work on non-Unix systems.
  102. * src/libs/libgroff/searchpath.cc: #include nonposix.h.
  103. (search_path::search_path): Use PATH_SEP instead of a literal
  104. colon.
  105. (search_path::command_line_dir): Ditto.
  106. (search_path::open_file): Use IS_ABSOLUTE, PATH_SEP and DIR_SEPS,
  107. to support non-Posix systems.
  108. * src/libs/libbib/search.cc: #include nonposix.h.
  109. (search_list::add_file): Open the file in binary mode.
  110. * src/libs/libbib/linear.cc: #include nonposix.h.
  111. (file_buffer::load): Remove \r characters preceding \n from the
  112. loaded buffer.
  113. * src/libs/libbib/index.cc: #include nonposix.h.
  114. (make_index_search_item): Open index_filename in O_BINARY mode.
  115. (index_search_item_iterator::get_tag): Ditto. Remove \r
  116. characters before \n characters.
  117. (index_search_item::check_files): Open files in binary mode.
  118. (index_search_item::munge_filename): Support DOS-style file names
  119. with backslashes and drive letters, use IS_ABSOLUTE.
  120. * src/devices/grops/ps.cc: #include nonposix.h.
  121. (main) [SET_BINARY]: Switch stdout to binary mode.
  122. * src/devices/grolj4/lj4.cc: #include nonposix.h.
  123. (main) [SET_BINARY]: Switch stdout to binary mode.
  124. * src/devices/grolbp/lbp.cc: #include nonposix.h
  125. (fill_pattern) [SET_BINARY]: Switch stdout to binary mode.
  126. * src/devices/grodvi/dvi.cc: #include nonposix.h.
  127. [_MSC_VER]: Remove inclusion of Windows-specific headers (done by
  128. nonposix.h).
  129. (main) [SET_BINARY]: Switch stdout to binary mode.
  130. [_MSC_VER]: Remove an explicit call to _setmode.
  131. * src/include/nonposix.h: New file.
  132. * Makefile.in (ENVSETUP): New variable, to set up case-sensitive
  133. operation when building with DJGPP.
  134. ($(TARGETS), dot, $(LIBDIRS), $(CPROGDIRS), $(CCPROGDIRS))
  135. ($(DEVDIRS), $(TTYDEVDIRS), $(INCDIRS), $(OTHERDIRS)): Use
  136. ENVSETUP.
  137. * Makefile.comm: mv y.tab.[ch] to y_tab.[ch], to make it work on
  138. MS-DOS.
  139. (.man.n): Replace `;' with `|', since FONTPATH, MACROPATH,
  140. etc. can include a semi-colon on DOS/Windows.
  141. (depend.temp): Use depend1.temp instead of depend.temp1, to
  142. prevent files from overerwiting each other on 8+3 filesystems.
  143. * gendef.sh (t): Change definition to work with DOS/Windows.
  144. doc/groff.texinfo: Apart of some typo corrections, I also changed
  145. some index entris, to make them more non-ambiguous, and also put
  146. @ignore around some parts that are not yet written, to allow the
  147. Info output be readable.
  148. 2000-06-10 Gael Queri <gqueri@mail.dotcom.fr>
  149. Replaced specific checks for function declarations with a generic
  150. routine taken from GNU bfd.
  151. * aclocal.m4 (GROFF_NEED_DECLARATION): New function.
  152. GROFF_PUTENV, GROFF_POPEN, GROFF_PCLOSE, GROFF_HYPOT: Removed.
  153. * configure.in: Use it.
  154. * src/devices/grolbp/lbp.cc, src/include/lib.h,
  155. src/preproc/grn/hgraph.cc, src/preproc/pic/pic.h,
  156. src/roff/groff/groff.cc: Use it.
  157. * Makefile.in, configure: Updated.
  158. 2000-06-07 Paco Andrés Verdú <pandres@dragonet.es>
  159. * src/devides/grolbp/lbp.h: Removed unused variables.
  160. 2000-05-31 Keith Thompson <kst@sdsc.edu>
  161. * src/devices/grolbp/lbp.cc (set_papersizes): Add declaration of
  162. strncasecmp().
  163. 2000-05-31 Werner LEMBERG <wl@gnu.org>
  164. * aclocal.m4 (GROFF_SRAND): New function to test the return value
  165. of srand() -- at least SunOS 4.1.3 uses `int' instead of `void'.
  166. * configure.in: Use it.
  167. * src/preproc/pic/pic.y, src/preproc/pic/pic.cc: Use it.
  168. * configure, Makefile.in: Updated.
  169. * configure.in: Add test for strncasecmp().
  170. * src/include/lib.h: Use it.
  171. 2000-05-29 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru>
  172. * src/preproc/grn/Makefile.sub: Add MLIB.
  173. 2000-05-29 Nix <nix@esperi.demon.co.uk>
  174. * Makefile.in: Use @datadir@ and @mandir@ appropriately.
  175. 2000-05-29 Werner LEMBERG <wl@gnu.org>
  176. * src/roff/grog/Makefile.sub, src/roff/grog/grog.sh: Add `@g@'.
  177. * PROBLEMS: Small update.
  178. * src/devices/grolbp/lbp.cc: Various small fixes.
  179. 2000-05-28 Keith Thompson <kst@sdsc.edu>
  180. * src/roff/nroff/nroff.sh: Fix main loop syntax.
  181. * src/utils/indxbib/indxbib.cc: Add declaration of mkstemp().
  182. 2000-05-25 Werner LEMBERG <wl@gnu.org>
  183. * man/roff.man: Removed unused macro.
  184. 2000-05-24 Werner LEMBERG <wl@gnu.org>
  185. * Makefile.in (dist): Remove src/xditview/Imakefile explicitly.
  186. This is needed e.g. if you do
  187. `make distclean; ./configure; make dist'.
  188. Version 1.16 released
  189. =====================
  190. 2000-05-23 Werner LEMBERG <wl@gnu.org>
  191. Adding font CWI (constant width italic) to devdvi.
  192. * font/devdvi/CWI: New file.
  193. * font/devdvi/generate/Makefile: Add generating rule.
  194. * font/devdvi/DESC.in, font/devdvi/Makefile.sub, win32-diffs,
  195. tmac/tmac.dvi: Use it.
  196. * NEWS: Announce it.
  197. * font/devlj4/*: Regenerated (only adding kernings for `cq' glyph).
  198. * font/devlj4/generate/Makefile: Cosmetic changes only.
  199. * man/groff.man: Removed most of the redundant description of
  200. special characters (which is in groff_char.man). Added font
  201. translation CB->CR for devdvi. Other minor fixes.
  202. * tmac/tmac.dvi: Improved appearance of \(co (copyright) and \(rg
  203. (registered) symbols.
  204. 2000-05-22 Werner LEMBERG <wl@gnu.org>
  205. * doc/Makefile: Added rule for creating info files.
  206. * font/devdvi/*: Added kernings for `cq' glyph. Updated to latest
  207. AMS font metrics.
  208. * font/devdvi/generate/Makefile: Fixed dependencies.
  209. * font/devps/*: Regenerated. Heavy changes for Bookman and
  210. NewCentury Schoolbook!
  211. * font/devps/generate/afmname: Will now run with GNU awk.
  212. * font/devps/generate/textmap: Added forgotten `cq' glyph name.
  213. * font/devps/generate/Makefile: Cosmetic changes only.
  214. 2000-05-21 Werner LEMBERG <wl@gnu.org>
  215. * tmac/tmac.an: Added a new command line option `-rSxx' (`xx' can be
  216. 10, 11, or 12) to support output with 11pt and 12pt base font sizes.
  217. `.SS' now produces a heading with a smaller size than `.SH'.
  218. Completely formatted.
  219. * doc/groff.texinfo, tmac/groff_man.man, NEWS: Document it.
  220. * man/groff.man: Improved table appearance. Use of `eo' request
  221. to reduce number of doubled backslashes in macro definitions.
  222. Replacing `\e' with `\(rs'. Other minor fixes.
  223. * src/preproc/tbl/main.cc: Insert HTML table end tag before `lf'
  224. to have correct line number.
  225. * INSTALL: Small improvement.
  226. 2000-05-20 Bernd Warken <bwarken@mayn.de>
  227. * man/roff.man, tmac/groff_tmac.man: Updates (with corrections by
  228. WL).
  229. 2000-05-19 Bernd Warken <bwarken@mayn.de>
  230. * man/groff.man: Complete update (with a lot of corrections by WL).
  231. 2000-05-18 Werner LEMBERG <wl@gnu.org>
  232. Adding `cq' (PS name `quoteright') glyph name as an alias for "'".
  233. * font/*/*: Implement it.
  234. * man/groff_char.man, NEWS: Document it.
  235. * src/include/unix.h: Removed. It isn't used.
  236. * doc/groff.texinfo: Slight improvements.
  237. 2000-05-17 Werner LEMBERG <wl@gnu.org>
  238. * README, win32-diffs: Small fixes and improvements.
  239. 2000-05-16 Werner LEMBERG <wl@gnu.org>
  240. * FDL: New file (the Free Documentation License version 1.1).
  241. * doc/groff.texinfo: Added many start-up values for gtroff.
  242. Some structural improvements of the source code.
  243. 2000-05-15 Werner LEMBERG <wl@gnu.org>
  244. * src/roff/troff/input.cc: Added small comment about troffrc-end.
  245. * src/roff/troff/troff.man: Added info about troffrc-end.
  246. 2000-05-14 Werner LEMBERG <wl@gnu.org>
  247. * Makefile.in (EXTRADIRS): Fix typos.
  248. (dist): Handle deletion of old .tar.gz file correctly.
  249. (DISTDIRS): Include all tty output devices.
  250. * doc/groff.texinfo: Adding more cross references; countless other
  251. fixes.
  252. 2000-05-13 Werner LEMBERG <wl@gnu.org>
  253. * MORE.STUFF: Added Robert Marks's utilities.
  254. 2000-05-12 Werner LEMBERG <wl@gnu.org>
  255. Added win32 port contributed by Blake McBride
  256. <blake@florida-software.com>.
  257. * README.WIN32, win32-diffs: New files.
  258. * NEWS: Updated.
  259. * src/preproc/grn/hgraph.cc (HGSetBrush): Replace `%lf' with `%f'.
  260. (tmove, tmove2): Added parentheses to avoid compiler warnings.
  261. (change): Removed unused variables.
  262. * src/preproc/grn/main.cc (main, conv): Removed unused variables.
  263. (savebounds): Changed return value from `int' to `void'.
  264. * src/preproc/grn/hdb.cc: Ditto.
  265. * src/devices/grolbp/lbp.cc (lbp_printer::draw): Removed superfluous
  266. final backslash in comment to avoid compiler warning.
  267. * src/utils/pfbtops/pfbtops.c: Added `getopt.h'.
  268. * doc/groff.texinfo: More fixes.
  269. 2000-05-11 OKAZAKI Tetsurou <okazaki@be.to>
  270. * tmac/tmac.doc: Documentation fix.
  271. 2000-05-11 Werner LEMBERG <wl@gnu.org>
  272. * doc/groff.texinfo: Reading the source code shows up a lot of
  273. omissions and incorrect data... More conversion to @Deffn macros.
  274. 2000-05-10 Werner LEMBERG <wl@gnu.org>
  275. * src/roff/troff/reg.cc (number_value_to_ascii): Remove ASCII
  276. dependency.
  277. * src/roff/troff/request.h: Removing unused `no_break_flag'.
  278. 2000-05-09 Werner LEMBERG <wl@gnu.org>
  279. * man/groff.man, man/roff.man, tmac/groff_tmac.man: Minor
  280. improvements.
  281. * doc/groff.texinfo: Extended history section. More conversion to
  282. @Deffn macros. More .tr documentation.
  283. 2000-05-07 Werner LEMBERG <wl@gnu.org>
  284. * doc/groff.texinfo: Completed tab section. Added info about
  285. fields.
  286. 2000-05-06 Mike MacIsaac <mikemac@us.ibm.com>
  287. * PROBLEMS: Describe configure script fix for OS/390 Unix.
  288. 2000-05-05 Werner LEMBERG <wl@gnu.org>
  289. * font/devdvi/DESC.in: Change size 11pt to 10.95pt (as used in
  290. LaTeX 2e).
  291. * NEWS: Document it.
  292. * man/troff.man: Minor optical improvements.
  293. 2000-05-03 Werner LEMBERG <wl@gnu.org>
  294. Adding `dq' (PS name `quotedbl') glyph name as an alias for `"'.
  295. * font/*/*: Implement it.
  296. * man/groff_char.man, NEWS: Document it.
  297. 2000-05-02 Werner LEMBERG <wl@gnu.org>
  298. * tmac/groff_tmac.man, man/groff.man, man/roff.man: Fixing @MANxEXT@
  299. expansion.
  300. * NEWS: Document the three new man pages.
  301. * aclocal.m4 (GROFF_CXX_CHECK): Removing obsolete AC_C_CROSS call.
  302. * configure: Updated.
  303. * font/devcp1047/R.proto: Fixing fatal bug (a missing `"' character).
  304. 2000-05-01 Werner LEMBERG <wl@gnu.org>
  305. Added grap support to grog.
  306. * src/roff/grog/grog.sh, src/roff/grog/grog.pl: Implement it.
  307. * src/roff/grog/grog.man: Document it.
  308. * doc/groff.texinfo, NEWS: Add info about grap support.
  309. Add new man pages comptributed by Bernd Warken <bwarken@mayn.de>
  310. (with slight fixes by me).
  311. * tmac/groff_tmac.man: New file documenting tmac mechanism.
  312. * tmac/Makefile.sub: Add groff_tmac.man.
  313. * man/roff.man: New file giving overview of roff system.
  314. * man/troff.man: A short reference of troff.
  315. * man/Makefile.sub: Add roff.man and troff.man.
  316. 2000-04-30 Werner LEMBERG <wl@gnu.org>
  317. Added grap support to groff.
  318. * src/roff/groff/groff.cc: Implement it.
  319. * src/roff/groff/groff.man: Document it.
  320. * src/devices/grotty/grotty.man: Add cp1047 device.
  321. * src/preproc/eqn/eqn.man, src/preproc/eqn/neqn.sh, tmac/eqnrc:
  322. Ditto.
  323. * src/roff/groff/groff.man: Ditto.
  324. * src/roff/nroff/nroff.sh, src/roff/nroff/nroff.man: Ditto.
  325. * doc/groff.texinfo: Ditto.
  326. * tmac/troffrc: Fix mapping of latin-1 char 160 (non-breakable space)
  327. for cp1047.
  328. 2000-04-29 Werner LEMBERG <wl@gnu.org>
  329. * man/groff_char.man: Add `pc' glyph.
  330. * tmac/tmac.latin1: Replacing `md' glyph with `pc'.
  331. * tmac/tmac.tty: Add `pc' glyph.
  332. * tmac/tmac.tty-char: Use/add `pc' glyph. Don't call tmac.latin1 if
  333. we use cp1047 output device.
  334. * Makefile.in, aclocal.m4: Don't build utf8 on EBCDIC hosts since
  335. there are still hardcoded latin1->unicode values in utf8's font
  336. definition files.
  337. * configure: Updated.
  338. * NEWS: Minor clarification. Updated.
  339. * PROBLEMS: Formatted. Added info about C++ fix pack for OS/390
  340. Unix.
  341. 2000-04-28 Werner LEMBERG <wl@gnu.org>
  342. Adding EBCDIC code page 1047.
  343. * font/devcp1047/R.proto, font/devcp1047/Makefile.sub,
  344. font/devcp1047/DESC.proto: New files.
  345. * aclocal.m4 (GROFF_EBCDIC): Introduce TTYDEVDIRS which can be
  346. either ascii/latin1 or cp1047.
  347. * Makefile.in: Use it.
  348. * configure: Updated.
  349. Replacing and/or adding `md' (mathdot) glyph with `pc'
  350. (periodcentered) in all text fonts.
  351. * font/*/*: Change it.
  352. 2000-04-27 Werner LEMBERG <wl@gnu.org>
  353. * aclocal.m4 (GROFF_OS390): Fixing compiler flags.
  354. * configure.in: Add check for strings.h.
  355. * src/include/driver.h: Use HAVE_STRINGS_H.
  356. * src/devices/grolbp/lpb.cc: Remove string.h.
  357. * src/include/groff-getopt.h: New file. It will be used instead of
  358. getopt.h (to be included in lib.h) to avoid endless problems with
  359. picky C++ compilers.
  360. * src/include/lib.h: Use groff-getopt.h.
  361. * src/include/Makefile.sub: Updated.
  362. * configure: Updated.
  363. * Makefile.in: Updated.
  364. * NEWS: Mention EBCDIC support.
  365. 2000-04-26 Werner LEMBERG <wl@gnu.org>
  366. * TODO: Some additions.
  367. 2000-04-25 Werner LEMBERG <wl@gnu.org>
  368. * src/roff/troff/troff.man, doc/groff.texinfo: Fixing documentation
  369. of mso request.
  370. 2000-04-23 Werner LEMBERG <wl@gnu.org>
  371. * src/roff/troff/troff.man: Minor fixes.
  372. 2000-04-22 Werner LEMBERG <wl@gnu.org>
  373. * src/roff/troff/troff.man, doc/groff.texinfo, NEWS: Document the
  374. `.T' string register and the incompatible definition of the `.T'
  375. number register (compared to Unix troff).
  376. * man/groff_char.man: Add some missing characters.
  377. * font/devutf8/NOTES: Update.
  378. 2000-04-21 Werner LEMBERG <wl@gnu.org>
  379. * src/include/htmlindicate.h, src/include/lib.h,
  380. src/include/posix.h: Fix copyright.
  381. * src/include/Makefile.sub: Update.
  382. 2000-04-20 Werner LEMBERG <wl@gnu.org>
  383. * src/roff/troff/input.cc (input_char_description): Removing
  384. superfluous space char.
  385. * tmac/tmac.X: Fix typo \(bq -> \(Bq.
  386. * doc/groff.texinfo: Document EBCDIC.
  387. 2000-04-19 Werner LEMBERG <wl@gnu.org>
  388. Introducing `shc' as the glyph name for the soft hyphen character.
  389. * tmac/tmac.tty, tmac/tmac.latin1, tmac/tmac.html,
  390. font/devlatin1/R.proto: Use it.
  391. * NEWS: Updated.
  392. 2000-04-18 Werner LEMBERG <wl@gnu.org>
  393. * src/devices/grops/ps.cc (ps_printer::flush_sbuf): Removing
  394. dependency on ASCII order.
  395. 2000-04-16 Sandor BARANY <S.Barany@infosys.tuwien.ac.at>
  396. * src/libs/libgroff/illegal.c: Added EBCDIC table.
  397. * src/roff/troff/input.cc: Added adaptation to EBCDIC.
  398. * src/preproc/refer/refer.cc, src/roff/troff/env.cc: Minor changes
  399. to increase portability.
  400. 2000-04-15 Werner LEMBERG <wl@gnu.org>
  401. * aclocal.m4: Added GROFF_EBCDIC and GROFF_OS390 tests.
  402. Redefined AC_OUTPUT_MAKE_DEFS to replace ASCII character `012' with
  403. the generic `\n' if under OS/390 Unix.
  404. * configure.in: Call GROFF_EBCDIC and GROFF_OS390.
  405. * configure: Regenerated.
  406. 2000-04-14 Werner LEMBERG <wl@gnu.org>
  407. * doc/groff.texinfo: More conversions to @Deffn.
  408. 2000-04-12 Werner LEMBERG <wl@gnu.org>
  409. * tmac/tmac.psfig: Fix incorrect use of `&' operator by replacing it
  410. with `:'.
  411. * src/roff/nroff/nroff.man: Add note about tmac.tty-char.
  412. 2000-04-10 Werner LEMBERG <wl@gnu.org>
  413. * doc/groff.texinfo: More conversions to @Deffn.
  414. 2000-04-08 Werner LEMBERG <wl@gnu.org>
  415. * src/libs/libgroff/{getopt.c,getopt1.c}, src/include/getopt.h:
  416. Updated to latest version (glibc 2.1.3).
  417. 2000-04-07 Werner LEMBERG <wl@gnu.org>
  418. * doc/Makefile (clean): Include more index files.
  419. Add rule texinfo->dvi.
  420. 2000-04-05 Werner LEMBERG <wl@gnu.org>
  421. * doc/groff.texinfo: Added new index `op' for operators. More
  422. info on end of sentence characters. More use of @Deffn.
  423. 2000-03-30 Werner LEMBERG <wl@gnu.org>
  424. * */*.man: Adding a note that a whitespace can be inserted between
  425. a command line option and its parameter -- we are using GNU getopt.
  426. * src/roff/groff/groff.man: Add example of `-m mandoc'.
  427. 2000-03-28 Werner LEMBERG <wl@gnu.org>
  428. Correct anachronism of calling the man macro file with `-man'
  429. instead of `-m man' etc.
  430. * tmac/tmac.man, tmac/tmac.mandoc, tmac/tmac.markup, tmac/tmac.mdoc,
  431. tmac/tmac.me, tmac/tmac.ms: New files tmac.m<package> which simply
  432. load tmac.<package>.
  433. * tmac/Makefile.sub: Updated. Take care of $(tmac_an_prefix) etc.
  434. * NEWS: Updated.
  435. * doc/groff.texinfo: Updated.
  436. * tmac/groff_man.man: Copyright added.
  437. 2000-03-27 Werner LEMBERG <wl@gnu.org>
  438. * doc/groff.texinfo: Introducing macros `Deffn' and `Defmac' to
  439. typeset the request resp. escape name with a tt font -- due to a
  440. bug in texinfo.tex it is necessary to use the `-e' switch with
  441. texi2dvi.
  442. Improving info about usage of groff units.
  443. Other minor fixes.
  444. 2000-03-20 Werner LEMBERG <wl@gnu.org>
  445. * doc/groff.texinfo: Added section about man macro package
  446. (I've basically taken groff_man.man). Introducing new indices `ma'
  447. for macros/strings and `gl' for glyph names. Other minor fixes.
  448. * tmac/groff_man.man: Fixed some typos.
  449. 2000-03-19 Werner LEMBERG <wl@gnu.org>
  450. * doc/groff.texinfo: Removed all occurrences of `you', `we', etc.
  451. Other minor fixes.
  452. * doc/texinfo.tex: New file.
  453. 2000-03-18 Werner LEMBERG <wl@gnu.org>
  454. * doc/groff.texinfo: Improved section on number registers. Other
  455. minor updates.
  456. 2000-03-16 Werner LEMBERG <wl@gnu.org>
  457. * src/roff/groff/groff.man: Added info about grolbp. Make nicer
  458. synopsis.
  459. * src/devices/grolbp/grolbp.man, src/roff/nroff/nroff.man,
  460. src/devices/grolj4/grlj4.man, src/devices/grops/grops.man,
  461. src/preproc/eqn/eqn.man, src/utils/afmtodit/afmtodit.man,
  462. src/utils/tfmtodit/tfmtodit.man: Make nicer synopsis.
  463. * src/preproc/grn/grn.man: Better synopsis; added copyright.
  464. * src/roff/grog/grog.man: Updated copyright date.
  465. 2000-03-14 Francisco Andrés Verdú <pandres@dragonet.es>
  466. * configure.in: Added test for strdup.
  467. * src/devices/grolbp/lbp.cc: Added a strdup() version in case none
  468. is available.
  469. Replaced dynamic allocation of arrays `[...]' with `new' operator.
  470. Other minor fixes.
  471. 2000-03-12 OKAZAKI Tetsurou <okazaki@be.to>
  472. * Makefile.comm: Add $(INCLUDES) to $(ALL_CFLAGS).
  473. 2000-03-11 Werner LEMBERG <wl@gnu.org>
  474. * src/preproc/grn/hdb.cc (DBGetType): Added return value to make
  475. compilers silent.
  476. * src/preproc/grn/hgraph.cc: Add #ifdef for hypot().
  477. * src/include/lib.h: Remove some spaces.
  478. 2000-03-10 Werner LEMBERG <wl@gnu.org>
  479. * src/libs/libgroff/tmpfile.cc (xtmptemplate, xtmpfile): Removing
  480. initializers from arguments (some compilers don't like this).
  481. 2000-03-09 Gaius Mulley <gaius@glam.ac.uk>
  482. * src/libs/libgroff/htmlindicate.cc: Added library file which is now
  483. used by pic and eqn to tell grohtml where the graphic regions start
  484. and end.
  485. * src/libs/libgroff/Makefile.sub: Use it.
  486. * src/preproc/eqn/main.cc, src/preproc/pic/troff.cc: Altered to use
  487. graphic_start() and graphic_end() from htmlindicate.cc.
  488. 2000-03-09 Werner LEMBERG <wl@gnu.org>
  489. * tmac/tmac.safer: Will now work correctly in compatibility mode.
  490. * tmac/groff_man.man: More fixes.
  491. 2000-03-08 Werner LEMBERG <wl@gnu.org>
  492. * doc/Makefile: Added texput.log to the `clean' target.
  493. * doc/groff.texinfo: Added info about delimiters for escapes.
  494. 2000-03-08 Bernd Warken <bwarken@mayn.de>
  495. * src/preproc/pic/pic.man: Add info on conversion of pic images to
  496. other graphic formats.
  497. 2000-03-07 OKAZAKI Tetsurou <okazaki@be.to>
  498. * Makefile.in, Makefile.sub, src/preproc/eqn/Makefile.sub,
  499. src/roff/groff/Makefile.sub, src/roff/nroff/Makefile.sub,
  500. src/utils/afmtodit/Makefile.sub: Use $(INSTALL_SCRIPT) for script
  501. files.
  502. 2000-03-07 Werner LEMBERG <wl@gnu.org>
  503. * doc/groff.texinfo: Spelling fixes.
  504. 2000-03-06 Werner LEMBERG <wl@gnu.org>
  505. * tmac/groff_man.man: Completely revised to cover everything in
  506. tmac.an.
  507. * doc/groff.texinfo, src/roff/troff/troff.man: Document evc request.
  508. Other minor fixings.
  509. * src/roff/troff/env.cc (environment_copy): Improve error message and
  510. fix itoa->i_to_a.
  511. * src/roff/troff/TODO: Updated.
  512. * doc/Makefile: Bug fixes -- this is still provisional, though...
  513. * tmac/eqnrc: Small fixes.
  514. 2000-03-05 Abramo Bagnara <abramo@alsa-project.org>
  515. Adding a request `evc' to copy environments.
  516. * src/roff/troff/env.cc (environment::copy, environment_copy):
  517. Implement it.
  518. * src/roff/troff/env.h: Add prototype.
  519. 2000-03-05 Francisco Andrés Verdú <pandres@dragonet.es>
  520. Adding strsep() -- Solaris 8 doesn't have it.
  521. * configure.in: Test it.
  522. * src/devices/grolbp/lbp.cc: Add code.
  523. 2000-03-05 Werner LEMBERG <wl@gnu.org>
  524. * src/roff/troff/div.cc (macro_diversion::output,
  525. top_level_diversion::output): Fixing an incompatibility with
  526. original troff: \x'0' updates the .a register also. Thanks to
  527. <Andries.Brouwer@cwi.nl> for pointing this out.
  528. * doc/groff.texinfo: Document it.
  529. * Makefile.in: Create Makefile.dep if necessary before calling the
  530. submake process to avoid warning about nonexistent file.
  531. * NEWS, PROJECTS: Updated.
  532. 2000-03-04 Werner LEMBERG <wl@gnu.org>
  533. * tmac/troffrc: Add tmac.lbp.
  534. 2000-03-03 Francisco Andrés Verdú <pandres@dragonet.es>
  535. * tmac/tmac.lbp: New file.
  536. * src/devices/grolbp/grolbp.man: Add documentation of `lbpname'
  537. command.
  538. 2000-03-03 Werner LEMBERG <wl@gnu.org>
  539. * Makefile.in: Fixing $(subdir).
  540. * README, NEWS: Small fixes.
  541. * test-groff: Adding path to grolbp.
  542. * configure.in: The (new) file src/xditview/Imakefile.in will be
  543. also configured -- it is now possible to build gxditview in a
  544. directory different from $srcdir.
  545. 2000-03-02 Blake McBride <blake@florida-software.com>
  546. * src/libs/libgroff/searchpath.cc (open_file): Adapting to WinNT.
  547. * MORE.STUFF: Added website of bell labs and info about plot2dev.
  548. 2000-03-01 Colin Phipps <crp22@cam.ac.uk>
  549. * src/utils/indxbib/indxbib.cc (main): Use mkstemp() for temporary
  550. files.
  551. 2000-02-29 Werner LEMBERG <wl@gnu.org>
  552. Adding GNU getopt to the groff distribution.
  553. * src/include/getopt.h, src/libs/libgroff/{getopt.c,getopt1.c}:
  554. New files.
  555. * src/include/Makefile.sub, src/libs/libgroff/Makefile.sub: Update.
  556. * aclocal.a4: Remove GROFF_GETOPT function.
  557. * configure.in, Makefile.in, PROBLEMS: Update.
  558. * src/include/lib.h: Replace getopt tests with getopt.h.
  559. * src/devices/grolbp/lpb.cc: Remove inclusion of getopt.h.
  560. * doc/groff.texinfo: Further checking/updating. Adding more index
  561. entries.
  562. * man/groff_out.man: Fix nroff mode activation (for emacs).
  563. * man/groff_font.man: Add missing ligature.
  564. 2000-02-28 Werner LEMBERG <wl@gnu.org>
  565. * doc/groff.texinfo: Further checking/updating. Adding more index
  566. entries.
  567. * src/devices/grolbp/grolbp.man: Added a comment line at the
  568. beginning of the file (similar to shell scripts) which indicates
  569. that `tbl' should be used as a preprocessor.
  570. 2000-02-27 Blake McBride <blake@florida-software.com>
  571. Adapting groff to MS Visual C++ 6.0 compiler (tested with
  572. Windows NT 4.0). Uses _MSC_VER define where necessary.
  573. * src/devices/grodvi/dvi.cc: Making stdout a binary stream.
  574. * src/devices/grolj4/lj4.cc: Making getopt variables `extern "C"'.
  575. * src/devices/grohtml/html.cc, src/devices/grops/ps.cc,
  576. src/include/lib.h, src/libs/libgroff/errarg.cc,
  577. src/libs/libgroff/itoa.c, src/libs/libgroff/nametoindex.cc,
  578. src/preproc/refer/label.y, src/preproc/refer/label.cc,
  579. src/roff/groff/pipeline.c, src/roff/troff/column.cc,
  580. src/roff/troff/div.cc, src/roff/troff/env.cc,
  581. src/roff/troff/input.cc, src/roff/troff/node.cc,
  582. src/roff/troff/reg.cc: Renaming itoa() to i_to_a() and iftoa() to
  583. if_to_a() to avoid name clashes.
  584. * src/include/posix.h: Don't use unistd.h.
  585. * src/libs/libgroff/tmpfile.cc: Use `#ifndef...#else...#endif'
  586. clause for integrating non-Unix xtmpfile() code.
  587. * src/roff/troff/input.cc: Adding `public' keyword to macro_header
  588. structure; use "rt" for popen() in pipe_source(); add getpid()
  589. dummy function.
  590. * src/roff/troff/node.cc: Use special versions of popen() in
  591. real_output_file() and pclose() in ~real_output_file().
  592. 2000-02-27 Werner LEMBERG <wl@gnu.org>
  593. Adding a new driver, grolbp, for Canon CAPSL printers (LBP-4 and
  594. LBP-8 series laser printers). This code has been contributed by
  595. Francisco Andrés Verdú <pandres@dragonet.es>.
  596. * src/devices/grolbp/*: The grolbp output device.
  597. * font/devlpb/*: The font description files.
  598. * Makefile.in: Add grolpb and devlbp subdirectories.
  599. * src/devices/grodvi/grodvi.man, src/devices/grolj4/grolj4.man,
  600. src/devices/grotty/grotty.man,src/roff/troff/troff.man: Minor
  601. typographic fixes.
  602. * doc/groff.texinfo: Further checking/updating. Adding more index
  603. entries.
  604. * NEWS: Updated.
  605. * src/devices/grolbp/Makefile.sub: Adding $(srcdir).
  606. * man/groff_font.man: Adding info about obsolete DESC keywords.
  607. * src/devices/grolj4/grolj4.man: Documenting additional DESC
  608. keywords.
  609. 2000-02-26 Werner LEMBERG <wl@gnu.org>
  610. * src/preproc/grn/grn.man: Added info about the gremlin file format
  611. (contributed by Daniel Senderowicz <daniel@synchrods.com>).
  612. 2000-02-25 Werner LEMBERG <wl@gnu.org>
  613. * src/preproc/grn/main.cc: Allow values of `narrow' parameter and
  614. friends to be non-integer.
  615. * src/preproc/grn/grn.man: Document it.
  616. * doc/groff.texinfo: Further checking/updating. Adding more index
  617. entries.
  618. 2000-02-24 Werner LEMBERG <wl@gnu.org>
  619. * src/preproc/grn/main.cc: Introduce BASE_THICKNESS, defining
  620. line thicknesses to be integer multiples of this value.
  621. * src/preproc/grn/grn.man: Commenting out the -s option -- the
  622. corresponding code doesn't work (yet).
  623. * doc/groff.texinfo: Further checking/updating. Adding more index
  624. entries.
  625. 2000-02-23 Werner LEMBERG <wl@gnu.org>
  626. * src/preproc/grn/{main.cc, hgraph.cc}: Using point units to
  627. specify line thickness instead of base units. The new default
  628. values are now 0.15,pt 0.45pt, and 0.75pt for thin, middle, and
  629. thick lines respectively.
  630. Removed unused variable `prevval'.
  631. * src/preproc/grn/grn.man: Updated.
  632. 2000-02-22 Werner LEMBERG <wl@gnu.org>
  633. * src/preproc/grn/main.cc: Slight formatting.
  634. * src/roff/groff/groff.man: Formatting fix.
  635. * src/preproc/grn/grn.man: Ditto.
  636. * src/roff/grog/grog.pl: Fixing two embarassing bugs.
  637. * doc/groff.texinfo: Further checking/updating.
  638. 2000-02-21 Werner LEMBERG <wl@gnu.org>
  639. * README, INSTALL, PROJECT, PROBLEMS, BUGREPORT: Updated.
  640. * test-groff: Added grn subdir to path.
  641. * doc/groff.texinfo: Some restructing and other small improvements.
  642. * src/roff/groff/groff.cc (help): Fixed info string.
  643. 2000-02-20 Werner LEMBERG <wl@gnu.org>
  644. * doc/meref.me: Fix description of .GS request.
  645. * src/roff/troff/troff.man: Fixing typo.
  646. Adding the `grn' preprocessor for gremlin graphic files.
  647. * src/preproc/grn/*: This is the Berkeley distribution written by
  648. David Slattengren and Barry Roitblat, adapted to groff by Daniel
  649. Senderowicz and Werner Lemberg.
  650. * doc/grnexampl.{me,g}: A sample for grn.
  651. * Makefile.in: Added subdirectory entry for grn.
  652. * src/roff/groff/groff.cc: Added support for grn. It can be now
  653. called with the switch `-g'.
  654. * src/roff/groff/groff.man: Updated.
  655. * src/roff/grog/grog.{man,pl,sh}: Updated.
  656. * NEWS: Updated.
  657. 2000-02-11 Gaius Mulley <gaius@glam.ac.uk>
  658. * src/include/lib.h: Added xtmptemplate and made xtmpfile
  659. parametrically polymorphic.
  660. * src/libs/libgroff/tmpfile.cc: Implemented xtmptemplate
  661. and the alterations to xtmpfile.
  662. xtmpfile can be requested to return the filename created
  663. and asked not to unlink the temp file. The default behaviour
  664. if parameters are absent is exactly the same as before.
  665. 2000-02-11 Abramo Bagnara <abramo@alsa-project.org>
  666. A new request `length' is available which returns the length of a
  667. string in a number register:
  668. * src/roff/troff/input.cc (length_macro): Implement it.
  669. * src/roff/troff/input.cc (init_input_requests): Register it.
  670. 2000-02-11 Werner LEMBERG <wl@gnu.org>
  671. * doc/groff.texinfo, src/roff/troff/troff.man: Add documentation
  672. of the `substring' request.
  673. * src/roff/troff/troff.man, doc/groff.texinfo: Document `length'
  674. request.
  675. * src/roff/troff/TODO, NEWS: Updated.
  676. 2000-02-09 Werner LEMBERG <wl@gnu.org>
  677. * src/roff/groff/groff.man: Added an example.
  678. 2000-02-06 Werner LEMBERG <wl@gnu.org>
  679. I've considerably modified the directory structure of the
  680. distribution to get a more vertical layout. For example, the number
  681. of top level directories has been reduced from 42 to 6.
  682. As a consequence, many changes, especially to the makefiles, were
  683. necessary:
  684. * The makefile variables `top_builddir' and `top_srcdir' have been
  685. introduced. Virtually all relative paths have been replaced with
  686. absolute ones using these two variables.
  687. * Dependencies (in the files `Makefile.dep') are no longer part of
  688. the distribution. Instead, they are created during a `make install'
  689. in the build directory.
  690. * aclocal.m4 (GROFF_SRCDIR, GROFF_BUILDDIR): Two new functions to
  691. make `top_srcdir' and `top_builddir' absolute.
  692. Some other changes:
  693. * Man pages now depend on the files `VERSION' and `REVISION'.
  694. * The added shell script `mkinstalldirs' will replace `mkdir' in
  695. almost all cases.
  696. * VERSION: Version number increased to 1.16.
  697. 2000-02-04 Werner LEMBERG <wl@gnu.org>
  698. * grops/psrm.cc (read_one_of): Fixed pointer incrementation.
  699. * Makefile.in: Removed $(tmac_m) since it is no longer needed
  700. (after an update of the mm stuff).
  701. * troff/Makefile.sub (majorminor.cc): Fix dependencies.
  702. 2000-02-03 Werner LEMBERG <wl@gnu.org>
  703. The .psbb request will now also accept Mac PS images (i.e. using LF
  704. as the EOL character).
  705. * troff/input.cc (ps_get_line): New function, taken from psrm.cc
  706. (with slight modifications).
  707. * troff/input.cc (do_ps_file): Use it.
  708. * test-groff: Add grohtml and grolj4 output devices to PATH.
  709. 2000-01-30 Werner LEMBERG <wl@gnu.org>
  710. * NEWS, MORE.STUFF: Updated.
  711. 2000-01-30 Cary D. Renzema <caryr@dollar.mxim.com>
  712. Add the `srand' command to pic.
  713. * pic/lex.cc, pic/pic.y: Implement it.
  714. * pic/pic.man: Document it.
  715. * pic/pic.cc, pic/pic.tab.h: Regenerated (with yacc).
  716. 2000-01-30 Werner LEMBERG <wl@gnu.org>
  717. Add a new request `.psbb'. This does exactly what the external
  718. program psbb did. It scans a PostScript image file for a
  719. %%BoundingBox comment and extracts the bounding box values (in
  720. PostScript units) which are then stored in the four new (read-only)
  721. number registers `llx', `lly', `urx', and `ury'.
  722. This will allow the usage of the .PSPIC macro without worrying
  723. about unsafe behaviour of groff, i.e., it will work without the
  724. `-U' switch of groff.
  725. * troff/input.cc: Implement it.
  726. * tmac/tmac.pspic: Use it.
  727. * troff/troff.man, grops/grops.man, NEWS: Document it.
  728. * psbb/*, Makefile.in: Remove it since it is no longer needed.
  729. This is bloody C code simply adapted from psbb.c! Any improvements
  730. welcome.
  731. 2000-01-29 Werner LEMBERG <wl@gnu.org>
  732. * man/groff_font.man: Minor clarifications.
  733. * NEWS: Updated.
  734. 2000-01-28 Werner LEMBERG <wl@gnu.org>
  735. * afmtodit/afmtodit.pl: Use new `--' comment delimiter.
  736. 2000-01-28 Gaius Mulley <gaius@glam.ac.uk>
  737. * man/groff_font.man: Brought up to date regarding tcommand
  738. extensions.
  739. * libgroff/font.cc: Handle everything after `--' as a comment
  740. in the font files.
  741. * devps/*: Added comment delimiter inside devps font files.
  742. 2000-01-28 Werner LEMBERG <wl@gnu.org>
  743. * tmac/tmac.arkup, tmac/groff_markup.man: Replace \fC...\fR with
  744. \fC...\fP (which now works as expected).
  745. * troff/troff.man: Fix typo.
  746. 2000-01-27 Gaius Mulley <gaius@glam.ac.uk>
  747. Completed the pass_filenames implementation in troff.
  748. * libdriver/input.cc: Will read the new `F' tcommand.
  749. * troff/node.cc, troff/node.h: Will issue the new `F' tcommand.
  750. * troff/input.cc: Use it.
  751. 2000-01-26 Werner LEMBERG <wl@gnu.org>
  752. * troff/env.cc (set_font): Fix the behaviour of \fP. The previous
  753. font will now be updated even if an invalid font is selected.
  754. 2000-01-24 Werner LEMBERG <wl@gnu.org>
  755. * doc/homepage.ms: Updated for new tmac.arkup.
  756. * tmac/tmac.html: Disable line breaks after hyphen-like characters.
  757. * tmac/tmac.arkup: Cleanup.
  758. Added `\&' to .HTML macro to `leave vertical mode', so to say.
  759. Removed obsolete .LINK macro completely.
  760. The macros .URL, .FTP, and .MAILTO now accept a third argument which
  761. will be immediately appended to the second argument (to be used with
  762. punctuation, for example).
  763. Disabled .CDFTP macro temporarily for security reasons.
  764. * tmac/groff_markup.man: Complete revision for latest changes in
  765. tmac.arkup -- note that it does not yet format correctly with
  766. grohtml :-(
  767. 2000-01-23 Bruno Haible <haible@clisp.cons.org>
  768. * nroff/nroff.sh: Accept -Tutf8 option and pass it through.
  769. * devutf8/R.proto: Add mappings for wp, lh, rh.
  770. * devutf8/NOTES: Updated.
  771. 2000-01-23 Werner LEMBERG <wl@gnu.org>
  772. * doc/groff.texinfo: Updated version/copyright info.
  773. 2000-01-21 Gaius Mulley <gaius@glam.ac.uk>
  774. Added support for two new directives in device descriptions:
  775. `pass_filenames' (to pass the input file name to the output device)
  776. and `use_charnames_in_special' (to support e.g. accented characters
  777. in the `X' request).
  778. * include/font.h, troff/charinfo.h: Declare it.
  779. * libgroff/font.cc, libgroff/fontfile.cc: Set it.
  780. * devhtml/DESC: Use it.
  781. * troff/input.cc: New function encoded_char.
  782. * troff/token.h: Add test for `specialness'.
  783. 2000-01-21 Werner LEMBERG <wl@gnu.org>
  784. * tmac/Makefile.sub: tmac.a4 and tmac.trace have been removed by
  785. mistake from the list of files to be installed.
  786. 2000-01-18 Werner LEMBERG <wl@gnu.org>
  787. * README: Added info how to apply patches.
  788. 2000-01-15 Jan Echternach <echter@informatik.uni-rostock.de>
  789. * troff/node.cc (ligature_note::operator delete): Fix g++ warning.
  790. 2000-01-15 Gaius Mulley <gaius@glam.ac.uk>
  791. * troff/input.cc: Add support for troffrc-end.
  792. * tbl/main.cc: Altered to issue table-start and table-end special
  793. characters if using the html device.
  794. * devhtml/*: Modified font files to incorporate html encoding of
  795. characters.
  796. * tmac/groff_markup.man: New file documenting tmac.arkup.
  797. * tmac/troffrc-end: New file. This is invoked after all user
  798. specified macros. Currently used by the html device to include
  799. tmac.html. Thus no need for users to specify -mhtml anymore.
  800. * tmac/Makefile.sub (NORMALFILES): Add troffrc-end.
  801. (MAN7): Add groff_markup.man.
  802. * tmac/tmac.an, tmac/tmac.html: Small html updates.
  803. * tmac/troffrc: tmac.arkup will now be called for the html device.
  804. * libgroff/font.cc, libgroff/font.h: Altered to include reading of
  805. extra device specific information about fonts.
  806. * doc/homepage.ms: New file. It is an example how an HTML home page
  807. could look like with grohtml.
  808. * doc/Makefile: Add homepage.ms. Remove rule for pic.html.
  809. 2000-01-12 Bruno Haible <haible@clisp.cons.org>
  810. * devutf8/R.proto: Add mappings for ti, Fn, st, an. Change mappings
  811. of Im, Re.
  812. * devutf8/NOTES: Updated.
  813. 2000-01-08 Bruno Haible <haible@clisp.cons.org>
  814. * eqn/box.cc, eqn/lex.cc, eqn/other.cc, eqn/over.cc, eqn/special.cc,
  815. eqn/text.cc, grodvi/dvi.cc, grops/ps.cc, grops/psrm.cc,
  816. libbib/index.cc, libbib/linear.cc, libbib/search.cc,
  817. libdriver/printer.cc, libgroff/font.cc, libgroff/string.cc,
  818. pic/lex.cc, pic/object.cc, refer/label.y, refer/ref.cc, tbl/main.cc,
  819. tbl/table.cc, tfmtodit/tfmtodit.cc, troff/dictionary.cc,
  820. troff/div.cc, troff/env.cc, troff/input.cc, troff/node.cc,
  821. troff/node.h, troff/reg.cc: Avoid most "g++ -Wall -Wno-sign-compare"
  822. warnings.
  823. * troff/node.cc (bracket_node::copy): Initialize last to NULL.
  824. 2000-01-12 Fabrizio Polacco <fab@prosa.it>
  825. grolj4: Paper size will be searched case-insensitively.
  826. * include/lib.h: Add check for strcasecmp().
  827. * grolj4/li4.cc (lookup_paper_size): Use strcasecmp().
  828. * configure.in: Check for strcasecmp().
  829. 2000-01-11 Werner LEMBERG <wl@gnu.org>
  830. * troff/Makefile.sub (majorminor.cc): Fix incorrect path to
  831. `REVISION'.
  832. 2000-01-10 Werner LEMBERG <wl@gnu.org>
  833. * Makefile.comm, Makefile.in, doc/Makefile: More fixes for the
  834. revision scheme.
  835. Add a new read-only register, `.Y', which contains the groff
  836. revision.
  837. * troff/input.cc (init_input_requests): Define it.
  838. * troff/Makefile.sub (majorminor.cc): Define `revision' string.
  839. * doc/groff.texinfo, troff/troff.man: Document it.
  840. * libgroff/Makefile.sub (version.cc): Add definition of
  841. `Version_string[]', consisting of `<major>.<minor>.<revision>'
  842. * eqn/main.cc, grodvi/dvi.cc, grolj4/lj4.cc, grops/ps.cc,
  843. grotty/tty.cc, hpftodit/hpftodit.cc, indxbib/indxbib.cc, pic/main.cc,
  844. refer/refer.cc, soelim/soelim.cc, tbl/main.cc, tfmtodit/tfmtodit.cc,
  845. troff/input.cc, pfbtops/pfbtops.c: Use it.
  846. 2000-01-10 Fabrizio Polacco <fab@prosa.it>
  847. Add a revision scheme to the groff package.
  848. * REVISION: New file.
  849. * libgroff/Makefile.sub (version.cc): Use it to define
  850. `revision_string[]'.
  851. * grops/psrm.cc: Use revision_string (converted to an unsigned
  852. integer) in constructor of resource_manager.
  853. 2000-01-10 Bruno Haible <haible@clisp.cons.org>
  854. * devutf8/Makefile.sub, devutf8/DESC.proto, devutf8/R.proto: New
  855. files.
  856. * Makefile.in (DEVDIRS): Add devutf8.
  857. * grotty/tty.cc: Include device.h.
  858. (glyph): Change type of `code' to `unsigned int'.
  859. (tty_printer): New field is_utf8. Constructor takes device argument.
  860. (tty_printer::tty_printer): If device if `utf8', set is_utf8.
  861. (tty_printer::add_char): Change type of first arg to `unsigned int'.
  862. (tty_printer::put_char): New function.
  863. (tty_printer::end_page): Use put_char() instead of ::putchar().
  864. (make_printer): Pass device to tty_printer constructor.
  865. * nroff.sh: Determine default device by calling 'locale'. As a
  866. fallback, look at all of $LC_ALL, $LC_CTYPE, $LANG, $LESSCHARSET.
  867. Recognize UTF-8 locales.
  868. * tmac/eqnrc: Recognize utf8 like latin1.
  869. * tmac/troffrc: Device utf8 needs tmac.tty.
  870. 2000-01-07 Werner LEMBERG <wl@gnu.org>
  871. * tmac/Makefile.sub: tmac.a4 and tmac.trace will now be installed.
  872. 2000-01-07 Paul Eggert <eggert@twinsun.com>
  873. Add a new predefined writeable number register, `year',
  874. which contains the current year.
  875. * doc/groff.texinfo, PROBLEMS, troff/troff.man: Document it.
  876. * tmac/tmac.s: Use it.
  877. * troff/input.cc (init_registers): Initialize it.
  878. 2000-01-06 Werner LEMBERG <wl@gnu.org>
  879. * PROBLEMS: Fixed typo.
  880. 2000-01-04 Paul Eggert <eggert@twinsun.com>
  881. * PROBLEMS: Add Y2k advice for the yr number register.
  882. 2000-01-03 Paul Eggert <eggert@twinsun.com>
  883. * doc/groff.texinfo: Fix Y2k bug in documentation of \n(yr.
  884. 2000-01-02 Werner LEMBERG <wl@gnu.org>
  885. * tmac/tmac.arkup: Slight modification of macros to provide better
  886. appearance for non-HTML formats.
  887. 2000-01-01 Charles Levert <charles@comm.polymtl.ca>
  888. * soelim/soelim.cc (include_path_append): realloc(NULL, n)
  889. does not automatically translate to malloc(n) on all OSes
  890. (e.g., SunOS) so do it explicitly. Also, check the returned
  891. value.
  892. 2000-01-01 Werner LEMBERG <wl@gnu.org>
  893. * tmac/tmac.arkup: Added .LINE macro. Some formatting.
  894. * Makefile.in: Added $(tmac_m) again since the Makefile in `mm'
  895. expects this variable
  896. 2000-01-01 Gaius Mulley <gaius@glam.ac.uk>
  897. * doc/Makefile: Added instructions to create HTML and text
  898. versions of some files.
  899. 1999-12-31 Werner LEMBERG <wl@gnu.org>
  900. * Updated INSTALL.gen.
  901. * tmac/tmac.arkup: Added fixes so that .FTP and .MAILTO works
  902. better resp. correctly with non-HTML devices.
  903. Local Variables:
  904. version-control: never
  905. coding: latin-1
  906. End: