* woman.el (woman-follow): New function, based on `man-follow'.
[bpt/emacs.git] / lisp / woman.el
CommitLineData
077decde
EZ
1;;; woman.el --- browse UN*X manual pages `wo (without) man'
2
aaef169d
TTN
3;; Copyright (C) 2000, 2002, 2003, 2004, 2005,
4;; 2006 Free Software Foundation, Inc.
077decde 5
2d4c3c85 6;; Author: Francis J. Wright <F.J.Wright@qmul.ac.uk>
b25dc41f 7;; Maintainer: FSF
2d4c3c85 8;; Keywords: help, unix
aff379a6 9;; Adapted-By: Eli Zaretskii <eliz@gnu.org>
e8af40ee 10;; Version: see `woman-version'
2d4c3c85 11;; URL: http://centaur.maths.qmul.ac.uk/Emacs/WoMan/
077decde
EZ
12
13;; This file is part of GNU Emacs.
14
15;; GNU Emacs is free software; you can redistribute it and/or modify
16;; it under the terms of the GNU General Public License as published by
17;; the Free Software Foundation; either version 2, or (at your option)
18;; any later version.
19
20;; GNU Emacs is distributed in the hope that it will be useful,
21;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23;; GNU General Public License for more details.
24
25;; You should have received a copy of the GNU General Public License
26;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
27;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28;; Boston, MA 02110-1301, USA.
077decde
EZ
29
30;;; Commentary:
31
32;; WoMan implements a subset of the formatting performed by the Emacs
33;; `man' (or `manual-entry') command to format a UN*X manual `page'
34;; for display, but without calling any external programs. It is
35;; intended to emulate the whole of the -man macro package, plus those
36;; ?roff requests that are most commonly used in man pages. However,
37;; the emulation is modified to include the reformatting done by the
38;; Emacs `man' command. No hyphenation is performed.
39
40;; Advantages
41
42;; Much more direct, does not require any external programs.
43;; Supports completion on man page names.
44
45;; Disadvantages
46
47;; Not a complete emulation. Currently no support for eqn or tbl.
48;; Slightly slower for large man pages (but usually faster for
49;; small- and medium-size pages).
50
51;; This browser works quite well on simple well-written man files. It
52;; works less well on idiosyncratic files that `break the rules' or
53;; use the more obscure ?roff requests directly. Current test results
54;; are available in the file woman.status.
55
56;; WoMan supports the use of compressed man files via
57;; `auto-compression-mode' by turning it on if necessary. But you may
58;; need to adjust the user option `woman-file-compression-regexp'.
59
60;; Read on for (currently) the only documentation for WoMan!
61
62;; See also the documentation for the WoMan interactive commands and
63;; user option variables, all of which begin with the prefix `woman-'.
64;; This can be done most easily by loading WoMan and then running the
65;; command `woman-mini-help', or selecting the WoMan menu option `Mini
66;; Help' when WoMan is running.
67
68;; WoMan is still under development! Please let me know what doesn't
69;; work -- I am adding and improving functionality as testing shows
70;; that it is necessary. See below for guidance on reporting bugs.
71
077decde
EZ
72;; Recommended use
73;; ===============
74
75;; Put this in your .emacs:
76;; (autoload 'woman "woman"
77;; "Decode and browse a UN*X man page." t)
78;; (autoload 'woman-find-file "woman"
79;; "Find, decode and browse a specific UN*X man-page file." t)
80
81;; Then either (1 -- *RECOMMENDED*): If the `MANPATH' environment
82;; variable is set then WoMan will use it; otherwise you may need to
83;; reset the Lisp variable `woman-manpath', and you may also want to
84;; set the Lisp variable `woman-path'. Please see the online
85;; documentation for these variables. Now you can execute the
86;; extended command `woman', enter or select a manual entry topic,
87;; using completion, and if necessary select a filename, using
88;; completion. By default, WoMan suggests the word nearest to the
89;; cursor in the current buffer as the topic.
90
91;; Or (2): Execute the extended command `woman-find-file' and enter a
92;; filename, using completion. This mode of execution may be useful
93;; for temporary files outside the standard UN*X manual directory
94;; structure.
95
96;; Or (3): Put the next two sexpr's in your .emacs:
97;; (autoload 'woman-dired-find-file "woman"
98;; "In dired, run the WoMan man-page browser on this file." t)
99;; (add-hook 'dired-mode-hook
1edbbf8a
EZ
100;; (lambda ()
101;; (define-key dired-mode-map "W" 'woman-dired-find-file)))
077decde
EZ
102;; and open the directory containing the man page file using dired,
103;; put the cursor on the file, and press `W'.
104
105;; In each case, the result should (!) be a buffer in Man mode showing
106;; a formatted manual entry. When called from WoMan, Man mode should
107;; work as advertised, but modified where necessary in the context of
108;; WoMan. (However, `Man' will still invoke the standard Emacs
109;; manual-browsing facility rather than `WoMan' -- this is
110;; intentional!)
111
112;; (By default, WoMan will automatically define the dired keys "W" and
113;; "w" when it loads, but only if they are not already defined. This
114;; behaviour is controlled by the user option `woman-dired-keys'.
115;; Note that the `dired-x' (dired extra) package binds
116;; `dired-copy-filename-as-kill' to the key "w" (as pointed out by Jim
117;; Davidson), although "W" appears to be really unused. The `dired-x'
118;; package will over-write the WoMan binding to "w", whereas (by
119;; default) WoMan will not overwrite the `dired-x' binding.)
120
121;; The following is based on suggestions by Guy Gascoigne-Piggford and
122;; Juanma Barranquero. If you really want to square the man-woman
123;; circle then you might care to define the following bash function in
124;; .bashrc:
125
126;; man() { gnudoit -q '(raise-frame (selected-frame)) (woman' \"$1\" ')' ; }
127
128;; If you use Microsoft COMMAND.COM then you can create a file called
129;; man.bat somewhere in your path containing the two lines:
130
131;; @echo off
132;; gnudoit -q (raise-frame (selected-frame)) (woman \"%1\")
133
134;; and then (e.g. from a command prompt or the Run... option in the
135;; Start menu) just execute
136
137;; man man_page_name
138
139
72f0712b
EZ
140;; Using the word at point as the default topic
141;; ============================================
077decde 142
72f0712b
EZ
143;; The `woman' command uses the word nearest to point in the current
144;; buffer as the default topic to look up if it matches the name of a
145;; manual page installed on the system. The default topic can also be
146;; used without confirmation by setting the user-option
147;; `woman-use-topic-at-point' to t; thanks to Benjamin Riefenstahl for
148;; suggesting this functionality.
077decde 149
72f0712b
EZ
150;; The variable `woman-use-topic-at-point' can be rebound locally,
151;; which may be useful to provide special private key bindings, e.g.
077decde
EZ
152
153;; (global-set-key "\C-cw"
1edbbf8a 154;; (lambda ()
077decde 155;; (interactive)
72f0712b 156;; (let ((woman-use-topic-at-point t))
077decde
EZ
157;; (woman)))))
158
159
160;; Customization, Hooks and Imenu
161;; ==============================
162
163;; WoMan supports the GNU Emacs 20+ customization facility, and puts
164;; a customization group called `WoMan' in the `Help' group under the
165;; top-level `Emacs' group. In order to be able to customize WoMan
166;; without first loading it, add the following sexp to your .emacs:
167
168;; (defgroup woman nil
169;; "Browse UNIX manual pages `wo (without) man'."
170;; :tag "WoMan" :group 'help :load "woman")
171
172
173;; WoMan currently runs two hooks: `woman-pre-format-hook' immediately
174;; before formatting a buffer and `woman-post-format-hook' immediately
175;; after formatting a buffer. These hooks can be used for special
176;; customizations that require code to be executed, etc., although
177;; most customization should be possible by setting WoMan user option
178;; variables, e.g. in `.emacs' and should NOT require the use of the
179;; hooks. `woman-pre-format-hook' might be appropriate for face
180;; customization, whereas `woman-post-format-hook' might be
181;; appropriate for installing a dynamic menu using `imenu' (although
182;; it is better to use the built-in WoMan imenu support).
183
184;; The WoMan menu provides an option to make a contents menu for the
185;; current man page (using imenu). Alternatively, if you set the
186;; variable `woman-imenu' to `t' then WoMan will do it automatically
187;; for every man page. The menu title is the value of the variable
188;; `woman-imenu-title', which is "CONTENTS" by default. By default,
189;; the menu shows manual sections and subsections, but you can change
190;; this by changing the value of `woman-imenu-generic-expression'.
191;; This facility is not yet widely tested and may be fooled by obscure
192;; man pages that `break the rules'.
193
194;; WoMan is configured not to replace spaces in an imenu *Completion*
195;; buffer. For further documentation of the use of imenu, such as
196;; menu sorting, see the source file imenu.el, which is distributed
197;; with GNU Emacs.
198
199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
200
201;; Howard Melman made (essentially) the following suggestions, which
202;; are slightly different from the expression that I currently use.
203;; You may prefer one of Howard's suggestions, which I think assume
204;; that `case-fold-search' is `t' (which it is by default):
205
206;; (setq woman-imenu-generic-expression
207;; '((nil "^\\( \\)?\\([A-Z][A-Z ]+[A-Z]\\)[ \t]*$" 2)))
208
209;; will give support for .SH and .SS, though it won't show the heading
210;; name hierarchy. If you just want .SH in the imenu then use:
211
212;; (setq woman-imenu-generic-expression
213;; '((nil "^\\([A-Z][A-Z ]+[A-Z]\\)[ \t]*$" 1)))
214
215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
216
217
218;; Vertical spacing and blank lines
219;; ================================
220
221;; The number of consecutive blank lines in the formatted buffer
222;; should be either 0 or 1. A blank line should leave a space like
223;; .sp 1 (p. 14). Current policy is to output vertical space only
224;; immediately before text is output.
225
226
227;; Horizontal and vertical spacing and resolution
228;; ==============================================
229
230;; WoMan currently assumes 10 characters per inch horizontally, hence
231;; a horizontal resolution of 24 basic units, and 5 lines per inch
232;; vertically, hence a vertical resolution of 48 basic units. (nroff
233;; uses 240 per inch).
234
235
236;; The *WoMan-Log* buffer
237;; ======================
238
239;; This is modelled on the byte-compiler. It logs all files formatted
240;; by WoMan, and if WoMan finds anything that it cannot handle then it
241;; writes a warning to this buffer. If the variable `woman-show-log'
242;; is non-nil (by default it is `nil') then WoMan automatically
243;; displays this buffer. Many WoMan warnings can be completely
244;; ignored, because they are reporting the fact that WoMan has ignored
245;; requests that it is correct to ignore. In some future version this
246;; level of paranoia will be reduced, but not until WoMan is more
247;; reliable. At present, all warnings should be treated with some
248;; suspicion. Uninterpreted escape sequences are also logged (in some
249;; cases).
250
251;; Uninterpreted ?roff requests can optionally be left in the
252;; formatted buffer to indicate precisely where they occur by
253;; resetting the variable `woman-ignore' to `nil' (by default it is
254;; `t').
255
256;; Automatic initiation of woman decoding
257
258;; (Probably not a good idea. If you use it, be careful!)
259
260;; Put something like this in your .emacs. The call to
261;; set-visited-file-name is to avoid font-locking triggered by
262;; automatic major mode selection.
263
264;; (autoload 'woman-decode-region "woman")
265
266;; (setq format-alist
267;; (cons
268;; '(man "UN*X man-page source format" "\\.\\(TH\\|ig\\) "
269;; woman-decode-region nil nil
1edbbf8a
EZ
270;; (lambda (arg)
271;; set-visited-file-name
272;; (file-name-sans-extension buffer-file-name)))))
077decde
EZ
273;; format-alist))
274
275
276;; Reporting Bugs
277;; ==============
278
279;; If WoMan fails completely, or formats a file incorrectly
280;; (i.e. obviously wrongly or significantly differently from man) or
281;; inelegantly, then please
282
283;; (a) check that you are running the latest version of woman.el
284;; available from my web site (see above),
285
286;; (b) check that the problem is not already described in the file
287;; woman.status, also available from my web site.
288
289;; If both of the above are true then please email me the entry from
290;; the *WoMan-Log* buffer relating to the problem file, together with
291;; a brief description of the problem. Please indicate where you got
292;; the source file from, but do not send it to me unless I ask you to!
293;; Thanks. (There is at present no automated bug-reporting facility
294;; for WoMan.)
295
296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
297
298;; NOTE:
299
300;; CASE-DEPENDENCE OF FILENAMES. By default, WoMan ignores case in
301;; file pathnames only when it seems appropriate. MS-Windows users
302;; who want complete case independence should set the NTEmacs variable
303;; `w32-downcase-file-names' to `t' and use all lower case when
304;; setting WoMan file paths.
305
306;; (1) INCOMPATIBLE CHANGE! WoMan no longer uses a persistent topic
307;; cache by default. (It caused too much confusion!) Explicitly set
308;; the variable `woman-cache-filename' to save the cache between Emacs
309;; sessions. This is recommended only if the command `woman' is too
310;; slow the first time that it is run in an Emacs session, while it
311;; builds its cache in main memory, which MAY be VERY slow.
312
313;; (2) The user option `woman-cache-level' controls the amount of
314;; information cached (in main memory and, optionally, saved to disc).
315
316;; (3) UPDATING THE CACHE. A prefix argument always causes the
317;; `woman' command (only) to rebuild its topic cache, and to re-save
318;; it to `woman-cache-filename' if this variable has a non-nil value.
319;; This is necessary if the NAMES (not contents) of any of the
320;; directories or files in the paths specified by `woman-manpath' or
321;; `woman-path' change. If WoMan user options that affect the cache
322;; are changed then WoMan will automatically update its cache file on
323;; disc (if one is in use) the next time it is run in a new Emacs
324;; session.
325
326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
327
328
329;; TO DO
330;; =====
331
1edbbf8a 332;; Reconsider case sensitivity of file names.
077decde
EZ
333;; MUST PROCESS .if, .nr IN ORDER ENCOUNTERED IN FILE! (rcsfile, mf).
334;; Allow general delimiter in `\v', cf. `\h'.
335;; Improve major-mode documentation.
336;; Pre-process conditionals in macro bodies if possible for speed?
2d4c3c85
JB
337;; Emulate more complete preprocessor support for tbl (.TS/.TE)
338;; Emulate some preprocessor support for eqn (.EQ/.EN)
077decde
EZ
339;; Re-write filling and adjusting code!
340;; Allow word wrap at comma (for long option lists)?
341;; Buffer list handling not quite right.
342;; Make 10 or 12 pitch (cpi) optional -- 12 => ll = 78
343;; Use unpaddable space for tabbing?
344;; Tidy up handling of fonts when filling and adjusting
345;; -- see text/text properties?
346;; Improve speed
347;; Add font-lock support (for quoted strings, etc.)?
348;; Optionally save large files in enriched format?
349;; Add apropos facility by searching NAME (?) entry in man files?
350;; Documentation -- optional auto-display of formatted WoMan man page?
351;; Implement a bug reporter?
352;; Support diversion and traps (to some extent) - for Tcl/tk pages?
353;; Add a menu of WoMan buffers?
1edbbf8a 354;; Fix .fc properly?
077decde
EZ
355
356
357;; Implementation strategy [this description is now well out of date!]
358;; -- three main passes, each to process respectively:
359
360;; 1) non-breaking `.' requests including font macros
361;; 2) \ escape sequences, mainly special characters and font changes
362;; 3) breaking `.' requests, mainly filling and justification
363
364;; For each pass, a control function finds and pre-processes the
365;; escape or request and then calls the appropriate function to
366;; perform the required formatting. Based originally on enriched.el
367;; and format.el.
368
1edbbf8a
EZ
369;; The background information that made this project possible is
370;; freely available courtesy of Bell Labs from
371;; http://cm.bell-labs.com/7thEdMan/
077decde
EZ
372
373
374;; Acknowledgements
375;; ================
376
377;; For Heather, Kathryn and Madelyn, the women in my life
378;; (although they will probably never use it)!
379
380;; I also thank the following for helpful suggestions, bug reports,
381;; code fragments, general interest, etc.:
382;; Jari Aalto <jari.aalto@cs.tpu.fi>
383;; Dean Andrews <dean@dra.com>
2b54c197 384;; Juanma Barranquero <lekktu@gmail.com>
077decde
EZ
385;; Karl Berry <kb@cs.umb.edu>
386;; Jim Chapman <jchapman@netcomuk.co.uk>
2d4c3c85 387;; Kin Cho <kin@neoscale.com>
077decde
EZ
388;; Frederic Corne <frederic.corne@erli.fr>
389;; Peter Craft <craft@alacritech.com>
390;; Charles Curley <ccurley@trib.com>
391;; Jim Davidson <jdavidso@teknowledge.com>
392;; Kevin D'Elia <Kevin.DElia@mci.com>
393;; John Fitch <jpff@maths.bath.ac.uk>
394;; Hans Frosch <jwfrosch@rish.b17c.ingr.com>
395;; Guy Gascoigne-Piggford <ggp@informix.com>
396;; Brian Gorka <gorkab@sanchez.com>
397;; Nicolai Henriksen <nhe@lyngso-industri.dk>
398;; Thomas Herchenroeder <the@software-ag.de>
399;; Alexander Hinds <ahinds@thegrid.net>
400;; Stefan Hornburg <sth@hacon.de>
401;; Theodore Jump <tjump@cais.com>
d0923e43 402;; David Kastrup <dak@gnu.org>
077decde
EZ
403;; Paul Kinnucan <paulk@mathworks.com>
404;; Jonas Linde <jonas@init.se>
405;; Andrew McRae <andrewm@optimation.co.nz>
406;; Howard Melman <howard@silverstream.com>
407;; Dennis Pixton <dennis@math.binghamton.edu>
408;; T. V. Raman <raman@Adobe.COM>
409;; Bruce Ravel <bruce.ravel@nist.gov>
410;; Benjamin Riefenstahl <benny@crocodial.de>
411;; Kevin Ruland <kruland@seistl.com>
412;; Tom Schutter <tom@platte.com>
413;; Wei-Xue Shi <wxshi@ma.neweb.ne.jp>
414;; Fabio Somenzi <fabio@joplin.colorado.edu>
415;; Karel Sprenger <ks@ic.uva.nl>
416;; Chris Szurgot <szurgot@itribe.net>
417;; Paul A. Thompson <pat@po.cwru.edu>
1edbbf8a 418;; Arrigo Triulzi <arrigo@maths.qmw.ac.uk>
077decde 419;; Geoff Voelker <voelker@cs.washington.edu>
f64b6c63 420;; Eli Zaretskii <eliz@gnu.org>
077decde 421
077decde
EZ
422\f
423;;; Code:
424
2d4c3c85
JB
425(defvar woman-version "0.551 (beta)" "WoMan version information.")
426
077decde 427(require 'man)
50071f01 428(require 'button)
2b54c197 429(define-button-type 'WoMan-xref-man-page
50071f01 430 :supertype 'Man-abstract-xref-man-page
707f55b0
DN
431 'func (lambda (arg)
432 (woman
433 ;; `woman' cannot deal with arguments that contain a
434 ;; section name, like close(2), so strip the section name.
435 (if (string-match Man-reference-regexp arg)
2b54c197 436 (substring arg 0 (match-end 1))
707f55b0 437 arg))))
50071f01 438
077decde
EZ
439(eval-when-compile ; to avoid compiler warnings
440 (require 'dired)
441 (require 'apropos))
442
1edbbf8a 443(defun woman-mapcan (fn x)
f471ea57 444 "Return concatenated list of FN applied to successive `car' elements of X.
1edbbf8a
EZ
445FN must return a list, cons or nil. Useful for splicing into a list."
446 ;; Based on the Standard Lisp function MAPCAN but with args swapped!
d0923e43
DK
447 ;; More concise implementation than the recursive one. -- dak
448 (apply #'nconc (mapcar fn x)))
1edbbf8a 449
2d4c3c85
JB
450(defun woman-parse-colon-path (paths)
451 "Explode search path string PATHS into a list of directory names.
452Allow Cygwin colon-separated search paths on Microsoft platforms.
f471ea57 453Replace null components by calling `woman-parse-man.conf'.
2d4c3c85
JB
454As a special case, if PATHS is nil then replace it by calling
455`woman-parse-man.conf'."
f471ea57 456 ;; Based on suggestions by Jari Aalto and Eli Zaretskii.
2d4c3c85
JB
457 ;; parse-colon-path returns nil for a null path component and
458 ;; an empty substring of MANPATH denotes the default list.
459 (if (memq system-type '(windows-nt ms-dos))
460 (cond ((null paths)
461 (mapcar 'woman-Cyg-to-Win (woman-parse-man.conf)))
462 ((string-match ";" paths)
463 ;; Assume DOS-style path-list...
464 (woman-mapcan ; splice list into list
465 (lambda (x)
466 (if x
467 (list x)
468 (mapcar 'woman-Cyg-to-Win (woman-parse-man.conf))))
469 (parse-colon-path paths)))
470 ((string-match "\\`[a-zA-Z]:" paths)
471 ;; Assume single DOS-style path...
472 paths)
473 (t
474 ;; Assume UNIX/Cygwin-style path-list...
475 (woman-mapcan ; splice list into list
476 (lambda (x)
477 (mapcar 'woman-Cyg-to-Win
478 (if x (list x) (woman-parse-man.conf))))
479 (let ((path-separator ":"))
480 (parse-colon-path paths)))))
481 ;; Assume host-default-style path-list...
482 (woman-mapcan ; splice list into list
483 (lambda (x) (if x (list x) (woman-parse-man.conf)))
484 (parse-colon-path (or paths "")))))
485
486(defun woman-Cyg-to-Win (file)
487 "Convert an absolute filename FILE from Cygwin to Windows form."
488 ;; Code taken from w32-symlinks.el
489 (if (eq (aref file 0) ?/)
490 ;; Try to use Cygwin mount table via `cygpath.exe'.
491 (condition-case nil
492 (with-temp-buffer
493 ;; cygpath -m file
494 (call-process "cygpath" nil t nil "-m" file)
495 (buffer-substring 1 (buffer-size)))
496 (error
497 ;; Assume no `cygpath' program available.
498 ;; Hack /cygdrive/x/ or /x/ or (obsolete) //x/ to x:/
499 (when (string-match "\\`\\(/cygdrive\\|/\\)?/./" file)
500 (if (match-string 1) ; /cygdrive/x/ or //x/ -> /x/
501 (setq file (substring file (match-end 1))))
502 (aset file 0 (aref file 1)) ; /x/ -> xx/
503 (aset file 1 ?:)) ; xx/ -> x:/
504 file))
505 file))
077decde
EZ
506
507\f
508;;; User options:
509
510;; NB: Group identifiers must be lowercase!
511
512(defgroup woman nil
513 "Browse UNIX manual pages `wo (without) man'."
514 :tag "WoMan"
515 :group 'help)
516
517(defcustom woman-show-log nil
518 "*If non-nil then show the *WoMan-Log* buffer if appropriate.
519I.e. if any warning messages are written to it. Default is nil."
520 :type 'boolean
521 :group 'woman)
522
523(defcustom woman-pre-format-hook nil
524 "*Hook run by WoMan immediately before formatting a buffer.
525Change only via `Customization' or the function `add-hook'."
526 :type 'hook
527 :group 'woman)
528
529(defcustom woman-post-format-hook nil
530 "*Hook run by WoMan immediately after formatting a buffer.
531Change only via `Customization' or the function `add-hook'."
532 :type 'hook
533 :group 'woman)
534
535\f
536;; Interface options
537
538(defgroup woman-interface nil
539 "Interface options for browsing UNIX manual pages `wo (without) man'."
540 :tag "WoMan Interface"
541 :group 'woman)
542
1edbbf8a 543(defcustom woman-man.conf-path
2d4c3c85
JB
544 (let ((path '("/usr/lib" "/etc")))
545 (if (eq system-type 'windows-nt)
546 (mapcar 'woman-Cyg-to-Win path)
547 path))
1edbbf8a 548 "*List of dirs to search and/or files to try for man config file.
372713e6
EZ
549A trailing separator (`/' for UNIX etc.) on directories is optional,
550and the filename is used if a directory specified is the first to
551contain the strings \"man\" and \".conf\" (in that order).
1edbbf8a
EZ
552If MANPATH is not set but a config file is found then it is parsed
553instead to provide a default value for `woman-manpath'."
554 :type '(repeat string)
555 :group 'woman-interface)
556
557(defun woman-parse-man.conf ()
2d4c3c85 558 "Parse if possible configuration file for man command.
f471ea57 559Used only if MANPATH is not set or contains null components.
1edbbf8a
EZ
560Look in `woman-man.conf-path' and return a value for `woman-manpath'.
561Concatenate data from all lines in the config file of the form
2d4c3c85 562 MANPATH /usr/man
02df8750 563or
372713e6
EZ
564 MANDATORY_MANPATH /usr/man
565or
566 OPTIONAL_MANPATH /usr/man"
1edbbf8a
EZ
567 ;; Functionality suggested by Charles Curley.
568 (let ((path woman-man.conf-path)
569 file manpath)
570 (while (and
571 path
572 (not (and
573 (file-readable-p (setq file (car path)))
574 ;; If not a file then find the file:
575 (or (not (file-directory-p file))
576 (and
577 (setq file
2d4c3c85 578 (directory-files file t "man.*\\.conf" t))
1edbbf8a
EZ
579 (file-readable-p (setq file (car file)))))
580 ;; Parse the file -- if no MANPATH data ignore it:
581 (with-temp-buffer
582 (insert-file-contents file)
583 (while (re-search-forward
2d4c3c85
JB
584 ;; `\(?: ... \)' is a "shy group"
585 "\
372713e6 586^[ \t]*\\(?:MANDATORY_\\|OPTIONAL_\\)?MANPATH[ \t]+\\(\\S-+\\)" nil t)
2d4c3c85 587 (setq manpath (cons (match-string 1) manpath)))
1edbbf8a
EZ
588 manpath))
589 ))
590 (setq path (cdr path)))
591 (nreverse manpath)))
592
077decde 593(defcustom woman-manpath
2d4c3c85
JB
594 (or (woman-parse-colon-path (getenv "MANPATH"))
595 '("/usr/man" "/usr/share/man" "/usr/local/man"))
077decde
EZ
596 "*List of DIRECTORY TREES to search for UN*X manual files.
597Each element should be the name of a directory that contains
598subdirectories of the form `man?', or more precisely subdirectories
599selected by the value of `woman-manpath-man-regexp'. Non-directory
1edbbf8a
EZ
600and unreadable files are ignored.
601
602If not set then the environment variable MANPATH is used. If no such
603environment variable is found, the default list is determined by
2d4c3c85
JB
604consulting the man configuration file if found, which is determined by
605the user option `woman-man.conf-path'. An empty substring of MANPATH
606denotes the default list.
077decde 607
1edbbf8a 608Any environment variables (names must have the UN*X-style form $NAME,
2d4c3c85 609e.g. $HOME, $EMACSDATA, $emacs_dir) are evaluated first but each
077decde
EZ
610element must evaluate to a SINGLE directory name. Trailing `/'s are
611ignored. (Specific directories in `woman-path' are also searched.)
612
613Microsoft platforms:
614I recommend including drive letters explicitly, e.g.
615
2d4c3c85 616 (\"C:/Cygwin/usr/man/\" \"C:/Cygwin/usr/local/man\").
077decde
EZ
617
618The MANPATH environment variable may be set using DOS semi-colon-
2d4c3c85 619separated or UN*X/Cygwin colon-separated syntax (but not mixed)."
077decde
EZ
620 :type '(repeat string)
621 :group 'woman-interface)
622
623(defcustom woman-manpath-man-regexp "[Mm][Aa][Nn]"
624 "Regexp to match man directories UNDER `woman-manpath' directories.
625These normally have names of the form `man?'. Its default value is
626\"[Mm][Aa][Nn]\", which is case-insensitive mainly for the benefit of
627Microsoft platforms. Its purpose is to avoid `cat?', `.', `..', etc."
628 ;; Based on a suggestion by Wei-Xue Shi.
629 :type 'string
630 :group 'woman-interface)
631
632(defcustom woman-path
633 (if (eq system-type 'ms-dos) '("$DJDIR/info" "$DJDIR/man/cat[1-9onlp]"))
634 "*List of SPECIFIC DIRECTORIES to search for UN*X manual files.
635For example
636
637 (\"/emacs/etc\").
638
639These directories are searched in addition to the directory trees
640specified in `woman-manpath'. Each element should be a directory
641string or nil, which represents the current directory when the path is
642expanded and cached. However, the last component (only) of each
643directory string is treated as a regexp \(Emacs, not shell) and the
644string is expanded into a list of matching directories. Non-directory
645and unreadable files are ignored. The default value is nil.
646
647Any environment variables (which must have the UN*X-style form $NAME,
2d4c3c85 648e.g. $HOME, $EMACSDATA, $emacs_dir) are evaluated first but each
077decde
EZ
649element must evaluate to a SINGLE directory name (regexp, see above).
650For example
651
2d4c3c85 652 (\"$EMACSDATA\") [or equivalently (\"$emacs_dir/etc\")].
077decde
EZ
653
654Trailing `/'s are discarded. (The directory trees in `woman-manpath'
655are also searched.) On Microsoft platforms I recommend including
656drive letters explicitly."
657 :type '(repeat (choice string (const nil)))
658 :group 'woman-interface)
659
660(defcustom woman-cache-level 2
661 "*The level of topic caching.
6621 - cache only the topic and directory lists
663 (the only level before version 0.34 - only for compatibility);
6642 - cache also the directories for each topic
665 (faster, without using much more memory);
6663 - cache also the actual filenames for each topic
667 (fastest, but uses twice as much memory).
668The default value is currently 2, a good general compromise.
669If the `woman' command is slow to find files then try 3, which may be
670particularly beneficial with large remote-mounted man directories.
671Run the `woman' command with a prefix argument or delete the cache
672file `woman-cache-filename' for a change to take effect.
673\(Values < 1 behave like 1; values > 3 behave like 3.)"
674 :type '(choice (const :tag "Minimal" 1)
675 (const :tag "Default" 2)
676 (const :tag "Maximal" 3))
677 :group 'woman-interface)
678
679(defcustom woman-cache-filename nil
680 "*The full pathname of the WoMan directory and topic cache file.
681It is used to save and restore the cache between sessions. This is
682especially useful with remote-mounted man page files! The default
683value of nil suppresses this action. The `standard' non-nil
684filename is \"~/.wmncach.el\". Remember that a prefix argument forces
685the `woman' command to update and re-write the cache."
686 :type '(choice (const :tag "None" nil)
687 (const :tag "~/.wmncach.el" "~/.wmncach.el")
688 file)
689 :group 'woman-interface)
690
691(defcustom woman-dired-keys t
692 "*List of `dired' mode keys to define to run WoMan on current file.
693E.g. '(\"w\" \"W\"), or any non-null atom to automatically define
694\"w\" and \"W\" if they are unbound, or nil to do nothing.
695Default is t."
696 :type '(choice (const :tag "None" nil)
697 (repeat string)
698 (other :tag "Auto" t))
699 :group 'woman-interface)
700
701(defcustom woman-imenu-generic-expression
702 '((nil "\n\\([A-Z].*\\)" 1) ; SECTION, but not TITLE
703 ("*Subsections*" "^ \\([A-Z].*\\)" 1))
704 "*Imenu support for Sections and Subsections.
705An alist with elements of the form (MENU-TITLE REGEXP INDEX) --
706see the documentation for `imenu-generic-expression'."
707 :type 'sexp
708 :group 'woman-interface)
709
710(defcustom woman-imenu nil
1edbbf8a
EZ
711 "*If non-nil then WoMan adds a Contents menu to the menubar.
712It does this by calling `imenu-add-to-menubar'. Default is nil."
077decde
EZ
713 :type 'boolean
714 :group 'woman-interface)
715
716(defcustom woman-imenu-title "CONTENTS"
717 "*The title to use if WoMan adds a Contents menu to the menubar.
718Default is \"CONTENTS\"."
719 :type 'string
720 :group 'woman-interface)
721
72f0712b
EZ
722(defcustom woman-use-topic-at-point-default nil
723 ;; `woman-use-topic-at-point' may be let-bound when woman is loaded,
724 ;; in which case its global value does not get defined.
077decde 725 ;; `woman-file-name' sets it to this value if it is unbound.
72f0712b 726 "*Default value for `woman-use-topic-at-point'."
077decde 727 :type '(choice (const :tag "Yes" t)
72f0712b 728 (const :tag "No" nil))
077decde
EZ
729 :group 'woman-interface)
730
72f0712b
EZ
731(defcustom woman-use-topic-at-point woman-use-topic-at-point-default
732 "*Control use of the word at point as the default topic.
733If non-nil the `woman' command uses the word at point automatically,
734without interactive confirmation, if it exists as a topic."
077decde 735 :type '(choice (const :tag "Yes" t)
72f0712b 736 (const :tag "No" nil))
077decde
EZ
737 :group 'woman-interface)
738
739(defvar woman-file-regexp nil
740 "Regexp used to select (possibly compressed) man source files, e.g.
741\"\\.\\([0-9lmnt]\\w*\\)\\(\\.\\(g?z\\|bz2\\)\\)?\\'\".
742Built automatically from the customizable user options
743`woman-uncompressed-file-regexp' and `woman-file-compression-regexp'.")
744
745(defvar woman-uncompressed-file-regexp) ; for the compiler
746(defvar woman-file-compression-regexp) ; for the compiler
747
748(defun set-woman-file-regexp (symbol value)
749 "Bind SYMBOL to VALUE and set `woman-file-regexp' as per user customizations.
1edbbf8a 750Used as :set cookie by Customize when customizing the user options
077decde
EZ
751`woman-uncompressed-file-regexp' and `woman-file-compression-regexp'."
752 (set-default symbol value)
753 (and (boundp 'woman-uncompressed-file-regexp)
754 (boundp 'woman-file-compression-regexp)
755 (setq woman-file-regexp
756 (concat woman-uncompressed-file-regexp
757 "\\("
758 (substring woman-file-compression-regexp 0 -2)
759 "\\)?\\'"))))
760
761(defcustom woman-uncompressed-file-regexp
762 "\\.\\([0-9lmnt]\\w*\\)" ; disallow no extension
763 "*Do not change this unless you are sure you know what you are doing!
764Regexp used to select man source files (ignoring any compression extension).
765
766The SysV standard man pages use two character suffixes, and this is
767becoming more common in the GNU world. For example, the man pages
768in the ncurses package include `toe.1m', `form.3x', etc.
769
770Note: an optional compression regexp will be appended, so this regexp
771MUST NOT end with any kind of string terminator such as $ or \\'."
772 :type 'regexp
773 :set 'set-woman-file-regexp
774 :group 'woman-interface)
775
776(defcustom woman-file-compression-regexp
777 "\\.\\(g?z\\|bz2\\)\\'"
778 "*Do not change this unless you are sure you know what you are doing!
779Regexp used to match compressed man file extensions for which
1edbbf8a 780decompressors are available and handled by auto-compression mode,
077decde
EZ
781e.g. \"\\\\.\\\\(g?z\\\\|bz2\\\\)\\\\'\" for `gzip' or `bzip2'.
782Should begin with \\. and end with \\' and MUST NOT be optional."
1edbbf8a
EZ
783 ;; Should be compatible with car of
784 ;; `jka-compr-file-name-handler-entry', but that is unduly
785 ;; complicated, includes an inappropriate extension (.tgz) and is
786 ;; not loaded by default!
077decde
EZ
787 :type 'regexp
788 :set 'set-woman-file-regexp
789 :group 'woman-interface)
790
f471ea57
EZ
791(defcustom woman-use-own-frame ; window-system
792 (or (and (fboundp 'display-graphic-p) (display-graphic-p)) ; Emacs 21
793 (memq window-system '(x w32))) ; Emacs 20
1edbbf8a
EZ
794 "*If non-nil then use a dedicated frame for displaying WoMan windows.
795Only useful when run on a graphic display such as X or MS-Windows."
796 :type 'boolean
797 :group 'woman-interface)
798
077decde
EZ
799\f
800;; Formatting options
801
802(defgroup woman-formatting nil
803 "Formatting options for browsing UNIX manual pages `wo (without) man'."
804 :tag "WoMan Formatting"
805 :group 'woman)
806
807(defcustom woman-fill-column 65
808 "*Right margin for formatted text -- default is 65."
809 :type 'integer
810 :group 'woman-formatting)
811
812(defcustom woman-fill-frame nil
813 ;; Based loosely on a suggestion by Theodore Jump:
bd48e7c6 814 "*If non-nil then most of the window width is used."
077decde
EZ
815 :type 'boolean
816 :group 'woman-formatting)
817
818(defcustom woman-default-indent 5
819 "*Default prevailing indent set by -man macros -- default is 5.
2d4c3c85 820Set this variable to 7 to emulate GNU man formatting."
077decde
EZ
821 :type 'integer
822 :group 'woman-formatting)
823
824(defcustom woman-bold-headings t
825 "*If non-nil then embolden section and subsection headings. Default is t.
c35dcd7e 826Heading emboldening is NOT standard `man' behavior."
077decde
EZ
827 :type 'boolean
828 :group 'woman-formatting)
829
830(defcustom woman-ignore t
adf79d27 831 "*If non-nil then unrecognized requests etc. are ignored. Default is t.
c35dcd7e 832This gives the standard ?roff behavior. If nil then they are left in
077decde
EZ
833the buffer, which may aid debugging."
834 :type 'boolean
835 :group 'woman-formatting)
836
1239851c
EZ
837(defcustom woman-preserve-ascii t
838 "*If non-nil, preserve ASCII characters in the WoMan buffer.
839Otherwise, to save time, some backslashes and spaces may be
840represented differently (as the values of the variables
841`woman-escaped-escape-char' and `woman-unpadded-space-char'
842respectively) so that the buffer content is strictly wrong even though
843it should display correctly. This should be irrelevant unless the
844buffer text is searched, copied or saved to a file."
845 ;; This option should probably be removed!
077decde
EZ
846 :type 'boolean
847 :group 'woman-formatting)
848
1edbbf8a
EZ
849(defcustom woman-emulation 'nroff
850 "*WoMan emulation, currently either nroff or troff. Default is nroff.
851Troff emulation is experimental and largely untested.
852\(Add groff later?)"
853 :type '(choice (const nroff) (const troff))
854 :group 'woman-formatting)
855
077decde
EZ
856\f
857;; Faces:
858
859(defgroup woman-faces nil
860 "Face options for browsing UNIX manual pages `wo (without) man'."
861 :tag "WoMan Faces"
862 :group 'woman
863 :group 'faces)
864
865(defcustom woman-fontify
866 (or (and (fboundp 'display-color-p) (display-color-p))
867 (and (fboundp 'display-graphic-p) (display-graphic-p))
868 (x-display-color-p))
869 "*If non-nil then WoMan assumes that face support is available.
870It defaults to a non-nil value if the display supports either colors
871or different fonts."
872 :type 'boolean
873 :group 'woman-faces)
874
e01cd227
MB
875;; This is overkill! Troff uses just italic; Nroff uses just underline.
876;; You should probably select either italic or underline as you prefer, but
877;; not both, although italic and underline work together perfectly well!
b66e8575 878(defface woman-italic
c35dcd7e 879 `((((min-colors 88) (background light))
ea81d57e
DN
880 (:slant italic :underline t :foreground "red1"))
881 (((background light)) (:slant italic :underline t :foreground "red"))
e31c1fd5 882 (((background dark)) (:slant italic :underline t)))
e01cd227 883 "Face for italic font in man pages."
077decde 884 :group 'woman-faces)
b66e8575
MB
885;; backward-compatibility alias
886(put 'woman-italic-face 'face-alias 'woman-italic)
077decde 887
b66e8575 888(defface woman-bold
ea81d57e
DN
889 '((((min-colors 88) (background light)) (:weight bold :foreground "blue1"))
890 (((background light)) (:weight bold :foreground "blue"))
e31c1fd5 891 (((background dark)) (:weight bold :foreground "green2")))
e01cd227 892 "Face for bold font in man pages."
077decde 893 :group 'woman-faces)
b66e8575
MB
894;; backward-compatibility alias
895(put 'woman-bold-face 'face-alias 'woman-bold)
077decde 896
e01cd227
MB
897;; Brown is a good compromise: it is distinguishable from the default
898;; but not enough so to make font errors look terrible. (Files that use
899;; non-standard fonts seem to do so badly or in idiosyncratic ways!)
b66e8575 900(defface woman-unknown
e01cd227 901 '((((background light)) (:foreground "brown"))
ea81d57e 902 (((min-colors 88) (background dark)) (:foreground "cyan1"))
e01cd227
MB
903 (((background dark)) (:foreground "cyan")))
904 "Face for all unknown fonts in man pages."
077decde 905 :group 'woman-faces)
b66e8575
MB
906;; backward-compatibility alias
907(put 'woman-unknown-face 'face-alias 'woman-unknown)
077decde 908
b66e8575 909(defface woman-addition
077decde 910 '((t (:foreground "orange")))
2d4c3c85 911 "Face for all WoMan additions to man pages."
077decde 912 :group 'woman-faces)
b66e8575
MB
913;; backward-compatibility alias
914(put 'woman-addition-face 'face-alias 'woman-addition)
077decde 915
e01cd227 916(defun woman-default-faces ()
c35dcd7e 917 "Set foreground colors of italic and bold faces to their default values."
077decde 918 (interactive)
b66e8575
MB
919 (face-spec-set 'woman-italic (face-user-default-spec 'woman-italic))
920 (face-spec-set 'woman-bold (face-user-default-spec 'woman-bold)))
077decde 921
e01cd227 922(defun woman-monochrome-faces ()
c35dcd7e 923 "Set foreground colors of italic and bold faces to that of the default face.
e01cd227 924This is usually either black or white."
077decde 925 (interactive)
b66e8575
MB
926 (set-face-foreground 'woman-italic 'unspecified)
927 (set-face-foreground 'woman-bold 'unspecified))
077decde
EZ
928
929;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1edbbf8a
EZ
930;; Experimental font support, initially only for MS-Windows.
931(defconst woman-font-support
f471ea57 932 (eq window-system 'w32) ; Support X later!
1edbbf8a
EZ
933 "If non-nil then non-ASCII characters and symbol font supported.")
934
935(defun woman-select-symbol-fonts (fonts)
936 "Select symbol fonts from a list FONTS of font name strings."
937 (let (symbol-fonts)
938 ;; With NTEmacs 20.5, the PATTERN option to `x-list-fonts' does
939 ;; not seem to work and fonts may be repeated, so ...
940 (while fonts
941 (and (string-match "-Symbol-" (car fonts))
942 (not (member (car fonts) symbol-fonts))
943 (setq symbol-fonts (cons (car fonts) symbol-fonts)))
944 (setq fonts (cdr fonts)))
945 symbol-fonts))
946
947(when woman-font-support
b66e8575 948 (make-face 'woman-symbol)
077decde 949
1edbbf8a 950 ;; Set the symbol font only if `woman-use-symbol-font' is true, to
077decde
EZ
951 ;; avoid unnecessarily upsetting the line spacing in NTEmacs 20.5!
952
1edbbf8a
EZ
953 (defcustom woman-use-extended-font t
954 "*If non-nil then may use non-ASCII characters from the default font."
955 :type 'boolean
956 :group 'woman-faces)
957
958 (defcustom woman-use-symbol-font nil
9198ee0e
EZ
959 "*If non-nil then may use the symbol font.
960It is off by default, mainly because it may change the line spacing
961\(in NTEmacs 20.5)."
077decde 962 :type 'boolean
077decde
EZ
963 :group 'woman-faces)
964
965 (defconst woman-symbol-font-list
1edbbf8a
EZ
966 (or (woman-select-symbol-fonts (x-list-fonts "*" 'default))
967 (woman-select-symbol-fonts (x-list-fonts "*")))
968 "Symbol font(s), preferably same size as default when WoMan was loaded.")
077decde
EZ
969
970 (defcustom woman-symbol-font (car woman-symbol-font-list)
971 "*A string describing the symbol font to use for special characters.
972It should be compatible with, and the same size as, the default text font.
973Under MS-Windows, the default is
974 \"-*-Symbol-normal-r-*-*-*-*-96-96-p-*-ms-symbol\"."
975 :type `(choice
1edbbf8a 976 ,@(mapcar (lambda (x) (list 'const x))
077decde
EZ
977 woman-symbol-font-list)
978 string)
077decde
EZ
979 :group 'woman-faces)
980
981 )
982
1edbbf8a
EZ
983;; For non windows-nt ...
984(defvar woman-use-extended-font nil)
985(defvar woman-use-symbol-font nil)
986(defvar woman-symbol-font nil)
077decde
EZ
987;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
988
989\f
990;;; Internal variables:
991
992(defconst woman-justify-list
993 '(left right center full)
994 "Justify styles for `fill-region-as-paragraph'.")
995(defconst woman-adjust-left 0 ; == adjust off, noadjust
996 "Adjustment indicator `l' -- adjust left margin only.")
997(defconst woman-adjust-right 1
998 "Adjustment indicator `r' -- adjust right margin only.")
999(defconst woman-adjust-center 2
1000 "Adjustment indicator `c' -- center.")
1001(defconst woman-adjust-both 3 ; default -- adj,both
1002 "Adjustment indicator `b' or `n' -- adjust both margins.")
1003
1004(defvar woman-adjust woman-adjust-both
1005 "Current adjustment number-register value.")
1006(defvar woman-adjust-previous woman-adjust
1007 "Previous adjustment number-register value.")
1008(defvar woman-justify
1009 (nth woman-adjust woman-justify-list) ; use vector?
1010 "Current justification style for `fill-region-as-paragraph'.")
1011(defvar woman-justify-previous woman-justify
1012 "Previous justification style for `fill-region-as-paragraph'.")
1013
1014(defvar woman-left-margin woman-default-indent
1015 "Current left margin.")
1016(defvar woman-prevailing-indent woman-default-indent
1017 "Current prevailing indent.")
1018(defvar woman-interparagraph-distance 1
1019 "Interparagraph distance in lines.
1020Set by .PD; used by .SH, .SS, .TP, .LP, .PP, .P, .IP, .HP.")
1021(defvar woman-leave-blank-lines nil
1022 "Blank lines to leave as vertical space.")
1023(defconst woman-tab-width 5
1024 "Default tab width set by -man macros.")
1025(defvar woman-nofill nil
1026 "Current fill mode: nil for filling.")
1027(defvar woman-RS-left-margin nil
1028 "Left margin stack for nested use of `.RS/.RE'.")
1029(defvar woman-RS-prevailing-indent nil
1030 "Prevailing indent stack for nested use of `.RS/.RE'.")
1031(defvar woman-nospace nil
1032 "Current no-space mode: nil for normal spacing.
1033Set by `.ns' request; reset by any output or `.rs' request")
1034
1035(defsubst woman-reset-nospace ()
1edbbf8a 1036 "Set `woman-nospace' to nil."
077decde
EZ
1037 (setq woman-nospace nil))
1038
077decde
EZ
1039(defconst woman-request-regexp "^[.'][ \t]*\\(\\S +\\) *"
1040 ;; Was "^\\.[ \t]*\\([a-z0-9]+\\) *" but cvs.1 uses a macro named
1041 ;; "`" and CGI.man uses a macro named "''"!
1042 ;; CGI.man uses ' as control character in places -- it *should*
1043 ;; suppress breaks!
1044 ;; Could end with "\\( +\\|$\\)" instead of " *"
1045 "Regexp to match a ?roff request plus trailing white space.")
1046
1047(defvar woman-imenu-done nil
1edbbf8a 1048 "Buffer-local: set to true if function `woman-imenu' has been called.")
077decde
EZ
1049(make-variable-buffer-local 'woman-imenu-done)
1050
1051;; From imenu.el -- needed when reformatting a file in its old buffer.
1052;; The latest buffer index used to update the menu bar menu.
1053(eval-when-compile
1054 (require 'imenu))
1055(make-variable-buffer-local 'imenu--last-menubar-index-alist)
1056
1057(defvar woman-buffer-alist nil
1edbbf8a
EZ
1058 "An alist representing WoMan buffers that are already decoded.
1059Each element is of the form (FILE-NAME . BUFFER-NAME).")
077decde
EZ
1060
1061(defvar woman-buffer-number 0
1062 "Ordinal number of current buffer entry in `woman-buffer-alist'.
1063The ordinal numbers start from 0.")
1064
1edbbf8a
EZ
1065(defvar woman-if-conditions-true '(?n ?e ?o)
1066 "List of one-character built-in condition names that are true.
1067Should include ?e, ?o (page even/odd) and either ?n (nroff) or ?t (troff).
1068Default is '(?n ?e ?o). Set via `woman-emulation'.")
1069
077decde
EZ
1070\f
1071;;; Specialized utility functions:
1072
1073;;; Fast deletion without saving on the kill ring (cf. simple.el):
1074
1075(defun woman-delete-line (&optional arg)
1edbbf8a 1076 "Delete rest of current line; if all blank then delete thru newline.
077decde
EZ
1077With a numeric argument ARG, delete that many lines from point.
1078Negative arguments delete lines backward."
1079 ;; This is a non-interactive version of kill-line in simple.el that
1080 ;; deletes instead of killing and assumes kill-whole-line is nil,
1081 ;; which is essential!
1082 (delete-region (point)
1083 (progn
1084 (if arg
1085 (forward-line arg)
1086 (if (eobp)
1087 (signal 'end-of-buffer nil))
1088 (if (looking-at "[ \t]*$")
1089 (forward-line 1)
1090 (end-of-line)))
1091 (point))))
1092
1093(defsubst woman-delete-whole-line ()
1094 "Delete current line from beginning including eol."
1095 (beginning-of-line)
1096 (woman-delete-line 1))
1097
1098(defsubst woman-delete-following-space ()
1099 "Delete all spaces and tabs FOLLOWING point (cf. `delete-horizontal-space')."
1100 ;; cf. delete-horizontal-space in simple.el:
1101 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
1102
1103(defsubst woman-delete-match (subexp)
1104 "Delete subexpression SUBEXP of buffer text matched by last search."
1105 (delete-region (match-beginning subexp) (match-end subexp)))
1106
1107;; delete-char does not kill by default
1108;; delete-backward-char does not kill by default
1109;; delete-horizontal-space does not kill
1110;; delete-blank-lines does not kill
1111
1112\f
1113;;; File handling:
1114
1115(defvar woman-expanded-directory-path nil
1116 "Expanded directory list cache. Resetting to nil forces update.")
1117
1118(defvar woman-topic-all-completions nil
1119 "Expanded topic alist cache. Resetting to nil forces update.")
1120
1121;;;###autoload
1122(defun woman (&optional topic re-cache)
1edbbf8a 1123 "Browse UN*X man page for TOPIC (Without using external Man program).
077decde
EZ
1124The major browsing mode used is essentially the standard Man mode.
1125Choose the filename for the man page using completion, based on the
1126topic selected from the directories specified in `woman-manpath' and
1127`woman-path'. The directory expansions and topics are cached for
1128speed, but a non-nil interactive argument forces the caches to be
1129updated (e.g. to re-interpret the current directory).
1130
1edbbf8a
EZ
1131Used non-interactively, arguments are optional: if given then TOPIC
1132should be a topic string and non-nil RE-CACHE forces re-caching."
077decde
EZ
1133 (interactive (list nil current-prefix-arg))
1134 ;; The following test is for non-interactive calls via gnudoit etc.
ce5568bf 1135 (if (or (not (stringp topic)) (string-match "\\S " topic))
077decde
EZ
1136 (let ((file-name (woman-file-name topic re-cache)))
1137 (if file-name
1138 (woman-find-file file-name)
1139 (message
1140 "WoMan Error: No matching manual files found in search path")
1141 (ding))
1142 )
1143 (message "WoMan Error: No topic specified in non-interactive call")
1144 (ding))
1145 )
1146
1edbbf8a 1147;; Allow WoMan to be called via the standard Help menu:
077decde
EZ
1148(define-key-after menu-bar-manuals-menu [woman]
1149 '(menu-item "Read Man Page (WoMan)..." woman
1150 :help "Man-page documentation Without Man") t)
1151
1152(defvar woman-cached-data nil
1153 "A list of cached data used to determine cache validity.
1154Set from the cache by `woman-read-directory-cache'.")
1155
1156(defun woman-cached-data ()
1157 "Generate a list of data used to determine cache validity.
1158Called both to generate and to check the cache!"
1159 ;; Must use substituted paths because values of env vars may change!
1160 (list woman-cache-level
1161 (mapcar 'substitute-in-file-name woman-manpath)
1162 (mapcar 'substitute-in-file-name woman-path)))
1163
1164(defun woman-read-directory-cache ()
1165 "Load the directory and topic cache.
1edbbf8a
EZ
1166It is loaded from the file named by the variable `woman-cache-filename'.
1167Return t if the file exists, nil otherwise."
077decde
EZ
1168 (and
1169 woman-cache-filename
1170 (load woman-cache-filename t nil t) ; file exists
1171 (equal woman-cached-data (woman-cached-data)))) ; cache valid
1172
1173(defun woman-write-directory-cache ()
1174 "Save the directory and topic cache.
1edbbf8a 1175It is saved to the file named by the variable `woman-cache-filename'."
077decde
EZ
1176 (if woman-cache-filename
1177 (save-excursion ; to restore current buffer
1178 ;; Make a temporary buffer; name starting with space "hides" it.
1179 (let ((standard-output
1180 (set-buffer (generate-new-buffer "WoMan tmp buffer")))
1181 (backup-inhibited t))
1182 ;; (switch-to-buffer standard-output t) ; only for debugging
1183 (buffer-disable-undo standard-output)
1184 (princ
1185 ";;; WoMan directory and topic cache -- generated automatically\n")
1186 (print
1187 ;; For data validity check:
1188 `(setq woman-cached-data ',(woman-cached-data)))
1189 (print
1190 `(setq woman-expanded-directory-path
1191 ',woman-expanded-directory-path))
1192 (print
1193 `(setq woman-topic-all-completions
1194 ',woman-topic-all-completions))
1195 (write-file woman-cache-filename) ; write CURRENT buffer
1196 (kill-buffer standard-output)
1197 ))))
1198
1199(defvar woman-topic-history nil "Topic read history.")
1200(defvar woman-file-history nil "File-name read history.")
1201
1202(defun woman-file-name (topic &optional re-cache)
1203 "Get the name of the UN*X man-page file describing a chosen TOPIC.
72f0712b
EZ
1204When `woman' is called interactively, the word at point may be
1205automatically used as the topic, if the value of the user option
1206`woman-use-topic-at-point' is non-nil. Return nil if no file can
1207be found. Optional argument RE-CACHE, if non-nil, forces the
1208cache to be re-read."
077decde
EZ
1209 ;; Handle the caching of the directory and topic lists:
1210 (if (and (not re-cache)
1211 (or
1212 (and woman-expanded-directory-path woman-topic-all-completions)
1213 (woman-read-directory-cache)))
1214 ()
1215 (message "Building list of manual directory expansions...")
1216 (setq woman-expanded-directory-path
1217 (woman-expand-directory-path woman-manpath woman-path))
1218 (message "Building completion list of all manual topics...")
1219 (setq woman-topic-all-completions
1220 (woman-topic-all-completions woman-expanded-directory-path))
1221 (woman-write-directory-cache))
1222 ;; There is a problem in that I want to offer case-insensitive
1223 ;; completions, but to return only a case-sensitive match. This
1224 ;; does not seem to work properly by default, so I re-do the
1225 ;; completion if necessary.
b25dc41f
RS
1226 (let (files
1227 (default (current-word)))
077decde 1228 (or (stringp topic)
72f0712b
EZ
1229 (and (if (boundp 'woman-use-topic-at-point)
1230 woman-use-topic-at-point
1231 ;; Was let-bound when file loaded, so ...
1232 (setq woman-use-topic-at-point woman-use-topic-at-point-default))
1233 (setq topic (or (current-word t) "")) ; only within or adjacent to word
1234 (test-completion topic woman-topic-all-completions))
077decde 1235 (setq topic
72f0712b
EZ
1236 (let* ((word-at-point (current-word))
1237 (default
1238 (when (and word-at-point
1239 (test-completion
1240 word-at-point woman-topic-all-completions))
1241 word-at-point)))
1242 (completing-read
1243 (if default
5b76833f 1244 (format "Manual entry (default %s): " default)
72f0712b
EZ
1245 "Manual entry: ")
1246 woman-topic-all-completions nil 1
1247 nil
1248 'woman-topic-history
1249 default))))
077decde
EZ
1250 ;; Note that completing-read always returns a string.
1251 (if (= (length topic) 0)
1252 nil ; no topic, so no file!
1253 (cond
1254 ((setq files (woman-file-name-all-completions topic)))
1255 ;; Complete topic more carefully, i.e. use the completion
1256 ;; rather than the string entered by the user:
1257 ((setq files (all-completions topic woman-topic-all-completions))
1258 (while (/= (length topic) (length (car files)))
1259 (setq files (cdr files)))
1260 (setq files (woman-file-name-all-completions (car files)))))
1261 (cond
1262 ((null files) nil) ; no file found for topic.
1263 ((null (cdr files)) (car (car files))) ; only 1 file for topic.
1264 (t
1265 ;; Multiple files for topic, so must select 1.
1266 ;; Unread the command event (TAB = ?\t = 9) that runs the command
1267 ;; `minibuffer-complete' in order to automatically complete the
1268 ;; minibuffer contents as far as possible.
9198ee0e 1269 (setq unread-command-events '(9)) ; and delete any type-ahead!
077decde 1270 (completing-read "Manual file: " files nil 1
9198ee0e 1271 (try-completion "" files) 'woman-file-history))))))
077decde
EZ
1272
1273(defun woman-select (predicate list)
1274 "Select unique elements for which PREDICATE is true in LIST.
1275\(Note that this function changes the value of LIST.)"
1276 ;; Intended to be fast by avoiding recursion and list copying.
1277 (while (and list
1278 (or
1279 (member (car list) (cdr list))
1280 (not (funcall predicate (car list)))))
1281 (setq list (cdr list)))
1282 (if list
1283 (let ((newlist list) cdr_list)
1284 (while (setq cdr_list (cdr list))
1285 (if (and
1286 (not (member (car cdr_list) (cdr cdr_list)))
1287 (funcall predicate (car cdr_list)))
1288 (setq list cdr_list)
1289 (setcdr list (cdr cdr_list)))
1290 )
1291 newlist)))
1292
1293(defun woman-file-readable-p (dir)
1294 "Return t if DIR is readable, otherwise log a warning."
1295 (or (file-readable-p dir)
1296 (WoMan-warn "Ignoring unreadable `manpath' directory tree `%s'!" dir)))
1297
1298(defun woman-directory-files (head dir)
1edbbf8a 1299 "Return a sorted list of files in directory HEAD matching regexp in DIR.
077decde
EZ
1300Value is a sorted list of the absolute pathnames of all the files in
1301directory HEAD, or the current directory if HEAD is nil, that match the
1302regexp that is the final component of DIR. Log a warning if list is empty."
1303 (or (directory-files
1304 (or head (directory-file-name default-directory)) ; was "."
1305 t
1306 (file-name-nondirectory dir))
1307 (WoMan-warn "No directories match `woman-path' entry `%s'!" dir)))
1308
1309(defun woman-file-accessible-directory-p (dir)
1310 "Return t if DIR is accessible, otherwise log a warning."
1311 (or (file-accessible-directory-p dir)
1312 (WoMan-warn "Ignoring inaccessible `man-page' directory `%s'!" dir)))
1313
1314(defun woman-expand-directory-path (woman-manpath woman-path)
1edbbf8a
EZ
1315 "Expand the manual directories in WOMAN-MANPATH and WOMAN-PATH.
1316WOMAN-MANPATH should be a list of general manual directories, while
1317WOMAN-PATH should be a list of specific manual directory regexps.
077decde
EZ
1318Ignore any paths that are unreadable or not directories."
1319 ;; Allow each path to be a single string or a list of strings:
1320 (if (not (listp woman-manpath)) (setq woman-manpath (list woman-manpath)))
1321 (if (not (listp woman-path)) (setq woman-path (list woman-path)))
1322 (let (dir head dirs)
1323 (while woman-manpath
1324 (setq dir (car woman-manpath)
1325 woman-manpath (cdr woman-manpath))
1326 (if (and dir (woman-file-readable-p dir))
1327 ;; NB: `parse-colon-path' creates null elements for
1328 ;; redundant (semi-)colons and trailing `/'s!
1329 ;; If does not actually matter here if dir ends with `/'.
1330 ;; Need regexp "man" here to avoid "cat?", `.', `..', etc.
1331 (setq dir (woman-canonicalize-dir dir)
1332 dirs (nconc dirs (directory-files
1333 dir t woman-manpath-man-regexp)))))
1334 (while woman-path
1335 (setq dir (car woman-path)
1336 woman-path (cdr woman-path))
1337 (if (or (null dir)
1338 (null (setq dir (woman-canonicalize-dir dir)
1339 head (file-name-directory dir)))
1340 (woman-file-readable-p head))
1341 (setq dirs
1342 (if dir
1343 (nconc dirs (woman-directory-files head dir))
1344 (cons (directory-file-name default-directory) dirs))
1345 ;; was "." -- at head of list for later filtering
1346 )))
1347 (woman-select 'woman-file-accessible-directory-p dirs)))
1348
1349(defun woman-canonicalize-dir (dir)
1edbbf8a 1350 "Canonicalize the directory name DIR.
077decde
EZ
1351Any UN*X-style environment variables are evaluated first."
1352 (setq dir (expand-file-name (substitute-in-file-name dir)))
1353 ;; A path that ends with / matches all directories in it,
1354 ;; including `.' and `..', so remove any trailing / !!!
1355 (if (string= (substring dir -1) "/")
1356 (setq dir (substring dir 0 -1)))
c60ee5e7 1357 (if (memq system-type '(windows-nt ms-dos cygwin)) ; what else?
077decde
EZ
1358 ;; Match capitalization used by `file-name-directory':
1359 (setq dir (concat (file-name-directory dir)
1360 (file-name-nondirectory dir))))
1361 dir)
1362
1363(defsubst woman-not-member (dir path)
1edbbf8a 1364 "Return t if DIR is not a member of the list PATH, nil otherwise.
077decde
EZ
1365If DIR is `.' it is first replaced by the current directory."
1366 (not (member dir path)))
1367
1368(defun woman-topic-all-completions (path)
1369 "Return an alist of the man files in all man directories in the list PATH.
1370The cdr of each alist element is the path-index / filename."
1371 ;; Support 3 levels of caching: each element of the alist `files'
1372 ;; will be a list of the first `woman-cache-level' elements of the
1373 ;; following list: (topic path-index filename). This alist `files'
1374 ;; is re-processed by `woman-topic-all-completions-merge'.
1375 (let (dir files (path-index 0)) ; indexing starts at zero
1376 (while path
d0923e43 1377 (setq dir (pop path))
077decde 1378 (if (woman-not-member dir path) ; use each directory only once!
d0923e43
DK
1379 (push (woman-topic-all-completions-1 dir path-index)
1380 files))
077decde
EZ
1381 (setq path-index (1+ path-index)))
1382 ;; Uniquefy topics:
d0923e43
DK
1383 ;; Concate all lists with a single nconc call to
1384 ;; avoid retraversing the first lists repeatedly -- dak
1385 (woman-topic-all-completions-merge
1386 (apply #'nconc files))))
077decde 1387
077decde 1388(defun woman-topic-all-completions-1 (dir path-index)
f471ea57
EZ
1389 "Return an alist of the man topics in directory DIR with index PATH-INDEX.
1390A topic is a filename sans type-related extensions.
1391Support 3 levels of caching: each element of the alist will be a list
1392of the first `woman-cache-level' elements from the following list:
1393\(topic path-index filename)."
1394 ;; This function used to check that each file in the directory was
1395 ;; not itself a directory, but this is very slow and should be
1396 ;; unnecessary. So let us assume that `woman-file-regexp' will
1397 ;; filter out any directories, which probably should not be there
1398 ;; anyway, i.e. it is a user error!
d0923e43
DK
1399 ;;
1400 ;; Don't sort files: we do that when merging, anyway. -- dak
1401 (let (newlst (lst (directory-files dir nil woman-file-regexp t))
1402 ;; Make an explicit regexp for stripping extension and
1403 ;; compression extension: file-name-sans-extension is a
1404 ;; far too costly function. -- dak
1405 (ext (format "\\(\\.[^.\\/]*\\)?\\(%s\\)?\\'"
1406 woman-file-compression-regexp)))
1407 ;; Use a loop instead of mapcar in order to avoid the speed
1408 ;; penalty of binding function arguments. -- dak
1409 (dolist (file lst newlst)
1410 (push
1411 (cons
1412 (if (string-match ext file)
1413 (substring file 0 (match-beginning 0))
1414 file)
1415 (and (> woman-cache-level 1)
1416 (cons
1417 path-index
1418 (and (> woman-cache-level 2)
1419 (list file)))))
1420 newlst))))
077decde
EZ
1421
1422(defun woman-topic-all-completions-merge (alist)
1423 "Merge the alist ALIST so that the keys are unique.
1edbbf8a 1424Also make each path-info component into a list.
077decde 1425\(Note that this function changes the value of ALIST.)"
d0923e43
DK
1426 ;; Replaces unreadably "optimized" O(n^2) implementation.
1427 ;; Instead we use sorting to merge stuff efficiently. -- dak
1428 (let (elt newalist)
1429 ;; Sort list into reverse order
1430 (setq alist (sort alist (lambda(x y) (string< (car y) (car x)))))
1431 ;; merge duplicate keys.
1432 (if (> woman-cache-level 1)
1433 (while alist
1434 (setq elt (pop alist))
1435 (if (equal (car elt) (caar newalist))
1436 (unless (member (cdr elt) (cdar newalist))
1437 (setcdr (car newalist) (cons (cdr elt)
1438 (cdar newalist))))
1439 (setcdr elt (list (cdr elt)))
1440 (push elt newalist)))
077decde 1441 ;; woman-cache-level = 1 => elements are single-element lists ...
d0923e43
DK
1442 (while alist
1443 (setq elt (pop alist))
1444 (unless (equal (car elt) (caar newalist))
1445 (push elt newalist))))
1446 newalist))
077decde
EZ
1447
1448(defun woman-file-name-all-completions (topic)
1449 "Return an alist of the files in all man directories that match TOPIC."
1450 ;; Support 3 levels of caching: each element of
1451 ;; woman-topic-all-completions is a list of one of the forms:
1452 ;; (topic)
1453 ;; (topic (path-index) (path-index) ... )
1454 ;; (topic (path-index filename) (path-index filename) ... )
1455 ;; where the are no duplicates in the value lists.
1456 ;; Topic must match first `word' of filename, so ...
1457 (let ((topic-regexp
1458 (concat
1459 "\\`" (regexp-quote topic) ; first `word'
1460 "\\(\\..+\\)*" ; optional subsequent `words'
1461 woman-file-regexp)) ; extension
1462 (topics woman-topic-all-completions)
1463 (path woman-expanded-directory-path)
1464 dir files)
1465 (if (cdr (car topics))
1466 ;; Use cached path-info to locate files for each topic:
1467 (let ((path-info (cdr (assoc topic topics)))
1468 filename)
1469 (while path-info
1470 (setq dir (nth (car (car path-info)) path)
1471 filename (car (cdr (car path-info)))
1472 path-info (cdr path-info)
1473 files (nconc files
1474 ;; Find the actual file name:
1475 (if filename
1476 (list (concat dir "/" filename))
1477 (directory-files dir t topic-regexp)
1478 )))))
1479 ;; Search path for the files for each topic:
1480 (while path
1481 (setq dir (car path)
1482 path (cdr path))
1483 (if (woman-not-member dir path) ; use each directory only once!
1484 (setq files (nconc files
1485 (directory-files dir t topic-regexp))))
1486 ))
1487 (mapcar 'list files)
1488 ))
1489
f471ea57 1490\f
077decde
EZ
1491;;; dired support
1492
1493(defun woman-dired-define-key (key)
1494 "Bind the argument KEY to the command `woman-dired-find-file'."
1495 (define-key dired-mode-map key 'woman-dired-find-file))
1496
1497(defsubst woman-dired-define-key-maybe (key)
1498 "If KEY is undefined in Dired, bind it to command `woman-dired-find-file'."
f79b331a
EZ
1499 (if (or (eq (lookup-key dired-mode-map key) 'undefined)
1500 (null (lookup-key dired-mode-map key)))
077decde
EZ
1501 (woman-dired-define-key key)))
1502
1503(defun woman-dired-define-keys ()
1504 "Define dired keys to run WoMan according to `woman-dired-keys'."
1505 (if woman-dired-keys
1506 (if (listp woman-dired-keys)
1507 (mapcar 'woman-dired-define-key woman-dired-keys)
1508 (woman-dired-define-key-maybe "w")
1509 (woman-dired-define-key-maybe "W")))
1510 (define-key-after (lookup-key dired-mode-map [menu-bar immediate])
1511 [woman] '("Read Man Page (WoMan)" . woman-dired-find-file) 'view))
1512
1513(if (featurep 'dired)
1514 (woman-dired-define-keys)
1515 (add-hook 'dired-mode-hook 'woman-dired-define-keys))
1516
1517;;;###autoload
1518(defun woman-dired-find-file ()
1519 "In dired, run the WoMan man-page browser on this file."
1520 (interactive)
1521 ;; dired-get-filename is defined in dired.el
1522 (woman-find-file (dired-get-filename)))
1523
1524
1525;;; tar-mode support
1526
1527(defun woman-tar-extract-file ()
1528 "In tar mode, run the WoMan man-page browser on this file."
1529 (interactive)
1530 (or (eq major-mode 'tar-mode)
1531 (error "`woman-tar-extract-file' can be used only in `tar-mode'"))
1532 (buffer-disable-undo)
1533 (let (global-font-lock-mode)
1534 (funcall (symbol-function 'tar-extract)) ; defined in tar-mode
1535 (let ((WoMan-current-file buffer-file-name)) ; used for message logging
1536 (rename-buffer
1537 (woman-make-bufname (file-name-nondirectory buffer-file-name)))
1538 (woman-process-buffer)
1539 (goto-char (point-min)))))
1540
1541;; There is currently no `tar-mode-hook' so use ...
1542(eval-after-load "tar-mode"
1543 '(progn
1544 (define-key tar-mode-map "w" 'woman-tar-extract-file)
1545 (define-key-after (lookup-key tar-mode-map [menu-bar immediate])
1546 [woman] '("Read Man Page (WoMan)" . woman-tar-extract-file) 'view)))
1547
1548
1549(defvar woman-last-file-name nil
1550 "The full pathname of the last file formatted by WoMan.")
1551
1552(defun woman-reformat-last-file ()
1553 "Reformat last file, e.g. after changing fill column."
1554 (interactive)
1555 (if woman-last-file-name
1556 (woman-find-file woman-last-file-name t)
1557 (call-interactively 'woman-find-file)))
1558
1559;;;###autoload
1560(defun woman-find-file (file-name &optional reformat)
1561 "Find, decode and browse a specific UN*X man-page source file FILE-NAME.
1562Use existing buffer if possible; reformat only if prefix arg given.
1563When called interactively, optional argument REFORMAT forces reformatting
1edbbf8a 1564of an existing WoMan buffer formatted earlier.
077decde
EZ
1565No external programs are used, except that `gunzip' will be used to
1566decompress the file if appropriate. See the documentation for the
1567`woman' command for further details."
1568 (interactive "fBrowse UN*X manual file: \nP")
1569 (setq woman-last-file-name
1570 (setq file-name (expand-file-name file-name))) ; to canonicalize
1571 (let ((alist-tail woman-buffer-alist) exists)
1572 (setq woman-buffer-number 0)
1573 (while (and alist-tail (not (string= file-name (car (car alist-tail)))))
1574 (setq alist-tail (cdr alist-tail)
1575 woman-buffer-number (1+ woman-buffer-number)))
1576 (or (and (setq exists
1577 (and alist-tail (WoMan-find-buffer))) ; buffer exists
1578 (not reformat))
1579 ;; Format new buffer or reformat current buffer:
1580 (let* ((bufname (file-name-nondirectory file-name))
1581 (case-fold-search t)
1582 (compressed
1583 (not (not (string-match woman-file-compression-regexp bufname)))))
1584 (if compressed
1585 (setq bufname (file-name-sans-extension bufname)))
1586 (setq bufname (if exists
1587 (buffer-name)
1588 (woman-make-bufname bufname)))
1589 (woman-really-find-file file-name compressed bufname)
1590 (or exists
1591 (setq woman-buffer-alist
1592 (cons (cons file-name bufname) woman-buffer-alist)
1593 woman-buffer-number 0))
1594 )))
1595 (Man-build-section-alist)
1596 (Man-build-references-alist)
1597 (goto-char (point-min)))
1598
1599(defun woman-make-bufname (bufname)
1600 "Create an unambiguous buffer name from BUFNAME."
1601 (let ((dot (string-match "\\." bufname)))
1602 (if dot (setq bufname (concat
1603 (substring bufname (1+ dot)) " "
1604 (substring bufname 0 dot))))
1605 (generate-new-buffer-name ; ensure uniqueness
1606 (concat "*WoMan " bufname "*"))))
1607
1edbbf8a
EZ
1608(defvar woman-frame nil
1609 "Dedicated frame used for displaying WoMan windows.")
1610
077decde
EZ
1611(defun woman-really-find-file (filename compressed bufname)
1612 "Find, decompress, and decode a UN*X man page FILENAME.
1edbbf8a
EZ
1613If COMPRESSED is non-nil, turn on auto-compression mode to decompress
1614the file if necessary. Set buffer name BUFNAME and major mode.
077decde
EZ
1615Do not call directly!"
1616 (let ((WoMan-current-file filename)) ; used for message logging
1edbbf8a
EZ
1617 (if woman-use-own-frame
1618 (select-frame
1619 (or (and (frame-live-p woman-frame) woman-frame)
1620 (setq woman-frame (make-frame)))))
077decde
EZ
1621 (switch-to-buffer (get-buffer-create bufname))
1622 (buffer-disable-undo)
1623 (setq buffer-read-only nil)
1624 (erase-buffer) ; NEEDED for reformat
1625 (woman-insert-file-contents filename compressed)
1626 ;; Set buffer's default directory to that of the file.
1627 (setq default-directory (file-name-directory filename))
1628 (set (make-local-variable 'backup-inhibited) t)
1629 (set-visited-file-name "")
1630 (woman-process-buffer)))
1631
1632(defun woman-process-buffer ()
1633 "The second half of `woman-really-find-file'!"
1634 (interactive)
1635 ;; Check (crudely) that this really is likely to be in UN*X
1636 ;; man-page source format, assuming we are at point-min:
1637 (goto-char (point-min))
1638 (if (re-search-forward "^[.']" 1000 t)
1639 (woman-decode-buffer)
1640 (message
1641 "File appears to be pre-formatted -- using source file may be better.")
1642 (woman-man-buffer))
1643 (woman-mode))
1644
1645(defun woman-man-buffer ()
1646 "Post-process an nroff-preformatted man buffer."
1647 ;; Kill all leading whitespace:
1648 (if (looking-at "\\s-+") (woman-delete-match 0))
1649 ;; Delete all page footer/header pairs:
1650 (re-search-forward ".*") ; match header
1651 ;; Footer conventionally has page number at right, so ...
1652 (let ((regex (concat
1653 "^.*[0-9]\n\\s-*" ; footer and following blank lines
1654 (regexp-quote (match-string 0)) ; header
1655 "\\s-*\n"))) ; following blank lines
1656 (while (re-search-forward regex nil 1) ; finish at eob
1657 (woman-delete-match 0)))
1658 ;; Delete last text line (footer) and all following blank lines:
1659 (re-search-backward "\\S-")
1660 (beginning-of-line)
1661 (if (looking-at ".*[0-9]$")
1662 (delete-region (point) (point-max)))
1663
1664 ;; Squeeze multiple blank lines:
1665 (goto-char (point-min))
1666 (while (re-search-forward "^[ \t]*\n\\([ \t]*\n\\)+" nil t)
1667 (replace-match "\n" t t))
1668
a0dd66ef
EZ
1669 ;; CJK characters are underlined by double-sized "__".
1670 ;; (Code lifted from man.el, with trivial changes.)
1671 (if (< (buffer-size) (position-bytes (point-max)))
1672 ;; Multibyte characters exist.
1673 (progn
1674 (goto-char (point-min))
1675 (while (search-forward "__\b\b" nil t)
1676 (backward-delete-char 4)
b66e8575 1677 (woman-set-face (point) (1+ (point)) 'woman-italic))
a0dd66ef
EZ
1678 (goto-char (point-min))
1679 (while (search-forward "\b\b__" nil t)
1680 (backward-delete-char 4)
b66e8575 1681 (woman-set-face (1- (point)) (point) 'woman-italic))))
a0dd66ef 1682
077decde
EZ
1683 ;; Interpret overprinting to indicate bold face:
1684 (goto-char (point-min))
a0dd66ef 1685 (while (re-search-forward "\\(.\\)\\(\\(\b+\\1\\)+\\)" nil t)
077decde 1686 (woman-delete-match 2)
b66e8575 1687 (woman-set-face (1- (point)) (point) 'woman-bold))
077decde
EZ
1688
1689 ;; Interpret underlining to indicate italic face:
1690 ;; (Must be AFTER emboldening to interpret bold _ correctly!)
1691 (goto-char (point-min))
1692 (while (search-forward "_\b" nil t)
1693 (delete-char -2)
b66e8575 1694 (woman-set-face (point) (1+ (point)) 'woman-italic))
077decde
EZ
1695
1696 ;; Leave any other uninterpreted ^H's in the buffer for now! (They
1697 ;; might indicate composite special characters, which could be
1698 ;; interpreted if I knew what to expect.)
1699
1700 ;; Optionally embolden section and subsection headings
1701 ;; (cf. `woman-imenu-generic-expression'):
1702 (cond
1703 (woman-bold-headings
1704 (goto-char (point-min))
1705 (forward-line)
1706 (while (re-search-forward "^\\( \\)?\\([A-Z].*\\)" nil t)
b66e8575 1707 (woman-set-face (match-beginning 2) (match-end 2) 'woman-bold))))
077decde
EZ
1708 )
1709
1710(defun woman-insert-file-contents (filename compressed)
1711 "Insert file FILENAME into the current buffer.
1712If COMPRESSED is t, or is non-nil and the filename implies compression,
1edbbf8a 1713then turn on auto-compression mode to decompress the file.
077decde
EZ
1714Leave point at end of new text. Return length of inserted text."
1715 ;; Leaves point at end of inserted text in GNU Emacs 20.3, but at
1716 ;; start in 19.34!
1717 (save-excursion
1718 (let ((case-fold-search t))
1719 ;; Co-operate with auto-compression mode:
1720 (if (and compressed
1721 (or (eq compressed t)
1722 (string-match woman-file-compression-regexp filename))
1723 ;; (not auto-compression-mode)
1724 (not (rassq 'jka-compr-handler file-name-handler-alist)) )
1725 ;; (error "Compressed file requires Auto File Decompression turned on")
1726 (auto-compression-mode 1))
1727 (nth 1
1728 (condition-case ()
1729 (insert-file-contents filename nil)
1730 (file-error
1731 ;; Run find-file-not-found-hooks until one returns non-nil.
1732 ;; (run-hook-with-args-until-success 'find-file-not-found-hooks)
1733 (insert "\n***** File " filename " not found! *****\n\n")
1734 )))
1735 )))
1736
1737\f
1738;;; Major mode (Man) interface:
1739
1740(defvar woman-mode-map nil "Keymap for woman mode.")
1741
63e9aa8e
LK
1742(unless woman-mode-map
1743 (setq woman-mode-map (make-sparse-keymap))
077decde 1744 (set-keymap-parent woman-mode-map Man-mode-map)
63e9aa8e 1745
077decde
EZ
1746 (define-key woman-mode-map "R" 'woman-reformat-last-file)
1747 (define-key woman-mode-map "w" 'woman)
1748 (define-key woman-mode-map "\en" 'WoMan-next-manpage)
1749 (define-key woman-mode-map "\ep" 'WoMan-previous-manpage)
553f03bc
MA
1750 (define-key woman-mode-map [M-mouse-2] 'woman-follow-word)
1751
1752 ;; We don't need to call `man' when we are in `woman-mode'.
6081889e
CY
1753 (define-key woman-mode-map [remap man] 'woman)
1754 (define-key woman-mode-map [remap man-follow] 'woman-follow))
1755
1756(defun woman-follow (topic)
1757 "Get a Un*x manual page of the item under point and put it in a buffer."
1758 (interactive (list (Man-default-man-entry)))
1759 (if (or (not topic)
1760 (string= topic ""))
1761 (error "No item under point")
1762 (woman (if (string-match Man-reference-regexp topic)
1763 (substring topic 0 (match-end 1))
1764 topic))))
077decde 1765
e664497b 1766(defun woman-follow-word (event)
077decde 1767 "Run WoMan with word under mouse as topic.
077decde
EZ
1768Argument EVENT is the invoking mouse event."
1769 (interactive "e") ; mouse event
e664497b 1770 (goto-char (posn-point (event-start event)))
7cff4809 1771 (woman (or (current-word t) "")))
077decde
EZ
1772
1773;; WoMan menu bar and pop-up menu:
31e1a094
MR
1774(easy-menu-define
1775 woman-menu ; (SYMBOL MAPS DOC MENU)
1776 ;; That comment was moved after the symbol `woman-menu' to make
1777 ;; find-function-search-for-symbol work. -- rost
077decde
EZ
1778 woman-mode-map
1779 "WoMan Menu"
1780 `("WoMan"
1781 ["WoMan..." woman t] ; [NAME CALLBACK ENABLE]
1782 "--"
1783 ["Next Section" Man-next-section t]
1784 ["Previous Section" Man-previous-section t]
1785 ["Goto Section..." Man-goto-section t]
1786 ["Goto See-Also Section" Man-goto-see-also-section t]
1787 ["Follow Reference..." Man-follow-manual-reference t]
1788 "--"
1789 ["Previous WoMan Buffer" WoMan-previous-manpage t]
1790 ["Next WoMan Buffer" WoMan-next-manpage t]
1791 ["Bury WoMan Buffer" Man-quit t]
1792 ["Kill WoMan Buffer" Man-kill t]
1793 "--"
1794 ;; ["Toggle Fill Frame Width" woman-toggle-fill-frame t]
1795 ["Use Full Frame Width" woman-toggle-fill-frame
1796 :active t :style toggle :selected woman-fill-frame]
1edbbf8a 1797 ["Reformat Last Man Page" woman-reformat-last-file t]
e01cd227
MB
1798 ["Use Monochrome Main Faces" woman-monochrome-faces t]
1799 ["Use Default Main Faces" woman-default-faces t]
077decde
EZ
1800 ["Make Contents Menu" (woman-imenu t) (not woman-imenu-done)]
1801 "--"
1802 ["Describe (Wo)Man Mode" describe-mode t]
1803 ["Mini Help" woman-mini-help t]
1804 ,@(if (fboundp 'customize-group)
1805 '(["Customize..." (customize-group 'woman) t]))
1806 ["Show Version" (message "WoMan %s" woman-version) t]
1edbbf8a
EZ
1807 "--"
1808 ("Advanced"
1809 ["View Source" (view-file woman-last-file-name) woman-last-file-name]
1810 ["Show Log" (switch-to-buffer-other-window "*WoMan-Log*" t) t]
1811 ["Extended Font" woman-toggle-use-extended-font
1812 :included woman-font-support
1813 :active t :style toggle :selected woman-use-extended-font]
1814 ["Symbol Font" woman-toggle-use-symbol-font
1815 :included woman-font-support
1816 :active t :style toggle :selected woman-use-symbol-font]
1817 ["Font Map" woman-display-extended-fonts
1818 :included woman-font-support
1819 :active woman-use-symbol-font]
1820 "--"
1821 "Emulation"
1822 ["nroff" (woman-reset-emulation 'nroff)
1823 :active t :style radio :selected (eq woman-emulation 'nroff)]
1824 ["troff" (woman-reset-emulation 'troff)
1825 :active t :style radio :selected (eq woman-emulation 'troff)]
1826 )
077decde
EZ
1827 ))
1828
1edbbf8a
EZ
1829(defun woman-toggle-use-extended-font ()
1830 "Toggle `woman-use-extended-font' and reformat, for menu use."
1831 (interactive)
1832 (setq woman-use-extended-font (not woman-use-extended-font))
1833 (woman-reformat-last-file))
1834
1835(defun woman-toggle-use-symbol-font ()
1836 "Toggle `woman-use-symbol-font' and reformat, for menu use."
1837 (interactive)
1838 (setq woman-use-symbol-font (not woman-use-symbol-font))
1839 (woman-reformat-last-file))
1840
1841(defun woman-reset-emulation (value)
1842 "Reset `woman-emulation' to VALUE and reformat, for menu use."
1843 (interactive)
1844 (setq woman-emulation value)
1845 (woman-reformat-last-file))
1846
63e9aa8e
LK
1847(put 'woman-mode 'mode-class 'special)
1848
077decde
EZ
1849(defun woman-mode ()
1850 "Turn on (most of) Man mode to browse a buffer formatted by WoMan.
1851WoMan is an ELisp emulation of much of the functionality of the Emacs
1852`man' command running the standard UN*X man and ?roff programs.
1853WoMan author: F.J.Wright@Maths.QMW.ac.uk
1854WoMan version: see `woman-version'.
1855See `Man-mode' for additional details."
1856 (let ((Man-build-page-list (symbol-function 'Man-build-page-list))
1857 (Man-strip-page-headers (symbol-function 'Man-strip-page-headers))
1858 (Man-unindent (symbol-function 'Man-unindent))
1859 (Man-goto-page (symbol-function 'Man-goto-page)))
1860 ;; Prevent inappropriate operations:
1861 (fset 'Man-build-page-list 'ignore)
1862 (fset 'Man-strip-page-headers 'ignore)
1863 (fset 'Man-unindent 'ignore)
1864 (fset 'Man-goto-page 'ignore)
1865 (unwind-protect
63e9aa8e 1866 (delay-mode-hooks (Man-mode))
077decde
EZ
1867 ;; Restore the status quo:
1868 (fset 'Man-build-page-list Man-build-page-list)
1869 (fset 'Man-strip-page-headers Man-strip-page-headers)
1870 (fset 'Man-unindent Man-unindent)
63e9aa8e
LK
1871 (fset 'Man-goto-page Man-goto-page)))
1872 (setq major-mode 'woman-mode
1873 mode-name "WoMan")
1874 ;; Don't show page numbers like Man-mode does. (Online documents do
1875 ;; not have pages)
1876 (kill-local-variable 'mode-line-buffer-identification)
1877 (use-local-map woman-mode-map)
1878 ;; Imenu support:
1879 (set (make-local-variable 'imenu-generic-expression)
1880 ;; `make-local-variable' in case imenu not yet loaded!
1881 woman-imenu-generic-expression)
1882 (set (make-local-variable 'imenu-space-replacement) " ")
1883 ;; For reformat ...
1884 ;; necessary when reformatting a file in its old buffer:
1885 (setq imenu--last-menubar-index-alist nil)
1886 ;; necessary to avoid re-installing the same imenu:
1887 (setq woman-imenu-done nil)
1888 (if woman-imenu (woman-imenu))
1889 (let (buffer-read-only)
50071f01 1890 (Man-highlight-references 'WoMan-xref-man-page))
63e9aa8e
LK
1891 (set-buffer-modified-p nil)
1892 (run-mode-hooks 'woman-mode-hook))
077decde
EZ
1893
1894(defun woman-imenu (&optional redraw)
1895 "Add a \"Contents\" menu to the menubar.
1896Optional argument REDRAW, if non-nil, forces mode line to be updated."
1897 (interactive)
1898 (if woman-imenu-done
1899 ;; This is PRIMARILY to avoid a bug in imenu-add-to-menubar that
1900 ;; causes it to corrupt the menu bar if it is run more than once
1901 ;; in the same buffer.
1902 ()
1903 (setq woman-imenu-done t)
1904 (imenu-add-to-menubar woman-imenu-title)
1905 (if redraw (force-mode-line-update))))
1906
1907(defun woman-toggle-fill-frame ()
1908 "Toggle formatting to fill (most of) the width of the current frame."
1909 (interactive)
1910 (setq woman-fill-frame (not woman-fill-frame))
1911 (message "Woman fill column set to %s."
1912 (if woman-fill-frame "frame width" woman-fill-column)
1913 ))
1914
1915(defun woman-mini-help ()
1916 "Display WoMan commands and user options in an `apropos' buffer."
1917 ;; Based on apropos-command in apropos.el
1918 (interactive)
1919 (require 'apropos)
1920 (let ((message
1921 (let ((standard-output (get-buffer-create "*Apropos*")))
1922 (print-help-return-message 'identity))))
1923 (setq apropos-accumulator
1924 (apropos-internal "woman"
1edbbf8a
EZ
1925 (lambda (symbol)
1926 (or (commandp symbol)
1927 (user-variable-p symbol)))))
077decde
EZ
1928 ;; Filter out any inhibited symbols:
1929 (let ((tem apropos-accumulator))
1930 (while tem
1931 (if (get (car tem) 'apropos-inhibit)
1932 (setq apropos-accumulator (delq (car tem) apropos-accumulator)))
1933 (setq tem (cdr tem))))
1934 ;; Find documentation strings:
1935 (let ((p apropos-accumulator)
1936 doc symbol)
1937 (while p
1938 (setcar p (list ; must have 3 elements:
1939 (setq symbol (car p)) ; 1. name
1940 (if (functionp symbol) ; 2. command doc
1941 (if (setq doc (documentation symbol t))
1942 (substring doc 0 (string-match "\n" doc))
1943 "(not documented)"))
1944 (if (user-variable-p symbol) ; 3. variable doc
1945 (if (setq doc (documentation-property
1946 symbol 'variable-documentation t))
1947 (substring doc 0 (string-match "\n" doc))))))
1948 (setq p (cdr p))))
1949 ;; Output the result:
1950 (and (apropos-print t nil)
1951 message
8a26c165 1952 (message "%s" message))))
077decde
EZ
1953
1954
1955(defun WoMan-getpage-in-background (topic)
1956 "Use TOPIC to start WoMan from `Man-follow-manual-reference'."
1957 ;; topic is a string, generally of the form "section topic"
1958 (let ((s (string-match " " topic)))
1959 (if s (setq topic (substring topic (1+ s))))
1960 (woman topic)))
1961
1962(defvar WoMan-Man-start-time nil
1963 "Used to record formatting time used by the `man' command.")
1964
553f03bc
MA
1965;; Both advices are disabled because "a file in Emacs should not put
1966;; advice on a function in Emacs" (see Info node "(elisp)Advising
1967;; Functions"). Counting the formatting time is useful for
1968;; developping, but less applicable for daily use. The advice for
1969;; `Man-getpage-in-background' can be discarded, because the
1970;; key-binding in `woman-mode-map' has been remapped to call `woman'
1971;; but `man'. Michael Albinus <michael.albinus@gmx.de>
1972
1973;; (defadvice Man-getpage-in-background
1974;; (around Man-getpage-in-background-advice (topic) activate)
1975;; "Use WoMan unless invoked outside a WoMan buffer or invoked explicitly.
1976;; Otherwise use Man and record start of formatting time."
1977;; (if (and (eq major-mode 'woman-mode)
1978;; (not (eq (caar command-history) 'man)))
1979;; (WoMan-getpage-in-background topic)
1980;; ;; Initiates man processing
1981;; (setq WoMan-Man-start-time (current-time))
1982;; ad-do-it))
1983
1984;; (defadvice Man-bgproc-sentinel
1985;; (after Man-bgproc-sentinel-advice activate)
1986;; ;; Terminates man processing
1987;; "Report formatting time."
1988;; (let* ((time (current-time))
1989;; (time (+ (* (- (car time) (car WoMan-Man-start-time)) 65536)
1990;; (- (cadr time) (cadr WoMan-Man-start-time)))))
1991;; (message "Man formatting done in %d seconds" time)))
077decde 1992
077decde
EZ
1993\f
1994;;; Buffer handling:
1995
1996(defun WoMan-previous-manpage ()
1997 "Find the previous WoMan buffer."
1998 ;; Assumes currently in a WoMan buffer!
1999 (interactive)
2000 (WoMan-find-buffer) ; find current existing buffer
2001 (if (null (cdr woman-buffer-alist))
2002 (error "No previous WoMan buffer"))
2003 (if (>= (setq woman-buffer-number (1+ woman-buffer-number))
2004 (length woman-buffer-alist))
2005 (setq woman-buffer-number 0))
2006 (if (WoMan-find-buffer)
2007 ()
2008 (if (< (setq woman-buffer-number (1- woman-buffer-number)) 0)
2009 (setq woman-buffer-number (1- (length woman-buffer-alist))))
2010 (WoMan-previous-manpage)))
2011
2012(defun WoMan-next-manpage ()
2013 "Find the next WoMan buffer."
2014 ;; Assumes currently in a WoMan buffer!
2015 (interactive)
2016 (WoMan-find-buffer) ; find current existing buffer
2017 (if (null (cdr woman-buffer-alist))
2018 (error "No next WoMan buffer"))
2019 (if (< (setq woman-buffer-number (1- woman-buffer-number)) 0)
2020 (setq woman-buffer-number (1- (length woman-buffer-alist))))
2021 (if (WoMan-find-buffer)
2022 ()
2023 (WoMan-next-manpage)))
2024
2025(defun WoMan-find-buffer ()
2026 "Switch to buffer corresponding to `woman-buffer-number' and return it.
1edbbf8a
EZ
2027If such a buffer does not exist then remove its association from the
2028alist in `woman-buffer-alist' and return nil."
077decde
EZ
2029 (if (zerop woman-buffer-number)
2030 (let ((buffer (get-buffer (cdr (car woman-buffer-alist)))))
2031 (if buffer
2032 (switch-to-buffer buffer)
2033 ;; Delete alist element:
2034 (setq woman-buffer-alist (cdr woman-buffer-alist))
2035 nil))
2036 (let* ((prev-ptr (nthcdr (1- woman-buffer-number) woman-buffer-alist))
2037 (buffer (get-buffer (cdr (car (cdr prev-ptr))))))
2038 (if buffer
2039 (switch-to-buffer buffer)
2040 ;; Delete alist element:
2041 (setcdr prev-ptr (cdr (cdr prev-ptr)))
2042 (if (>= woman-buffer-number (length woman-buffer-alist))
2043 (setq woman-buffer-number 0))
2044 nil)
2045 )))
2046
2047\f
2048;;; Syntax and display tables:
2049
2050(defconst woman-escaped-escape-char ?\1c
2051 ;; An arbitrary unused control character
2052 "Internal character representation of escaped escape characters.")
2053(defconst woman-escaped-escape-string
2054 (char-to-string woman-escaped-escape-char)
2055 "Internal string representation of escaped escape characters.")
2056
2057(defconst woman-unpadded-space-char ?\1d
2058 ;; An arbitrary unused control character
2059 "Internal character representation of unpadded space characters.")
2060(defconst woman-unpadded-space-string
2061 (char-to-string woman-unpadded-space-char)
2062 "Internal string representation of unpadded space characters.")
2063
2064(defvar woman-syntax-table nil
2065 "Syntax table to support special characters used internally by WoMan.")
2066
2067(if woman-syntax-table
2068 ()
2069 (setq woman-syntax-table (make-syntax-table))
2070 ;; The following internal chars must NOT have whitespace syntax:
2071 (modify-syntax-entry woman-unpadded-space-char "." woman-syntax-table)
2072 (modify-syntax-entry woman-escaped-escape-char "." woman-syntax-table)
2073 )
2074
2075(defun woman-set-buffer-display-table ()
2076 "Set up a display table for a WoMan buffer.
2077This display table is used for displaying internal special characters, but
2078does not interfere with any existing display table, e.g. for displaying
2079European characters."
2080 (setq buffer-display-table
2081 ;; The following test appears to be necessary on some
2082 ;; non-Windows platforms, e.g. Solaris 2.6 when running on a
2083 ;; tty. Thanks to T. V. Raman <raman@Adobe.COM>.
2084 ;; The MS-DOS terminal also sets standard-display-table to
2085 ;; a non-nil value.
2086 (if standard-display-table ; default is nil !!!
2087 (copy-sequence standard-display-table)
2088 (make-display-table)))
2089 ;; Display the following internal chars correctly:
2090 (aset buffer-display-table woman-unpadded-space-char [?\ ])
2091 (aset buffer-display-table woman-escaped-escape-char [?\\]))
2092
2093\f
2094;;; The main decoding driver:
2095
2096(defvar font-lock-mode) ; for the compiler
2097
2098(defun woman-decode-buffer ()
2099 "Decode a buffer in UN*X man-page source format.
2100No external programs are used."
2101 (interactive) ; mainly for testing
2102 (WoMan-log-begin)
2103 (run-hooks 'woman-pre-format-hook)
2104 (and (boundp 'font-lock-mode) font-lock-mode (font-lock-mode -1))
2105 ;; (fundamental-mode)
2106 (let ((start-time (current-time)) ; (HIGH LOW MICROSEC)
2107 time) ; HIGH * 2**16 + LOW seconds
2108 (message "WoMan formatting buffer...")
2109; (goto-char (point-min))
2110; (cond
2111; ((re-search-forward "^\\.[ \t]*TH" nil t) ; wrong format if not found?
2112; (beginning-of-line)
2113; (delete-region (point-min) (point))) ; potentially dangerous!
2114; (t (message "WARNING: .TH request not found -- not man-page format?")))
2115 (woman-decode-region (point-min) (point-max))
2116 (setq time (current-time)
2117 time (+ (* (- (car time) (car start-time)) 65536)
2118 (- (cadr time) (cadr start-time))))
2119 (message "WoMan formatting buffer...done in %d seconds" time)
2120 (WoMan-log-end time))
2121 (run-hooks 'woman-post-format-hook))
2122
2123(defvar woman-string-alist ; rebound in woman-decode-region
2124 '(("S" . "") ("R" . "(Reg.)") ("Tm" . "(TM)")
2125 ("lq" . "\"") ("rq" . "\"")
2126 ("''" . "\"") ; needed for gcc.1
2127 (".T" . "") ; output device from -T option?
2128 )
2129 "Alist of strings predefined in the -man macro package `tmac.an'.")
2130
2131(defvar woman-negative-vertical-space nil ; rebound in woman-decode-region
2132 "Set to t if .sp N with N < 0 encountered.")
2133
2134(defun woman-pre-process-region (from to)
2135 "Pre-process escapes and comments in the region of text between FROM and TO.
2136To be called on original buffer and any .so insertions."
2137 ;; Hide escaped escapes \\ and printable escapes \e very early
2138 ;; (to be re-instated as just \ very late!):
2139 (goto-char from)
2140 ;; .eo turns off escape character processing
2141 (while (re-search-forward "\\(\\\\[\\e]\\)\\|^\\.eo" to t) ; \\
2142 (if (match-string 1)
2143 (replace-match woman-escaped-escape-string t t)
2144 (woman-delete-whole-line)
2145 ;; .ec turns on escape character processing (and sets the
2146 ;; escape character to its argument, if any, which I'm ignoring
2147 ;; for now!)
2148 (while (and (re-search-forward "\\(\\\\\\)\\|^\\.ec" to t) ; \
2149 (match-string 1))
2150 (replace-match woman-escaped-escape-string t t))
2151 ;; ***** Need test for .ec arg and warning here! *****
2152 (woman-delete-whole-line)))
2153
2d4c3c85
JB
2154 ;; Delete comments .\"<anything>, \"<anything> and null requests.
2155 ;; (However, should null . requests cause a break?)
077decde
EZ
2156 (goto-char from)
2157 (while (re-search-forward "^[.'][ \t]*\\(\\\\\".*\\)?\n\\|\\\\\".*" to t)
2d4c3c85 2158 (woman-delete-match 0)))
077decde
EZ
2159
2160(defun woman-non-underline-faces ()
2161 "Prepare non-underlined versions of underlined faces."
2162 (let ((face-list (face-list)))
2163 (while face-list
2164 (let* ((face (car face-list))
2165 (face-name (symbol-name face)))
2166 (if (and (string-match "\\`woman-" face-name)
2167 (face-underline-p face))
2168 (let ((face-no-ul (intern (concat face-name "-no-ul"))))
2169 (copy-face face face-no-ul)
2170 (set-face-underline-p face-no-ul nil))))
2171 (setq face-list (cdr face-list)))))
2172
2d4c3c85
JB
2173;; Preprocessors
2174;; =============
2175
2176;; This information is based on documentation for the man command by
2177;; Graeme W. Wilford <G.Wilford@ee.surrey.ac.uk>
2178
2179;; First, the environment variable $MANROFFSEQ is interrogated, and if
2180;; not set then the initial line of the nroff file is parsed for a
2181;; preprocessor string. To contain a valid preprocessor string, the
2182;; first line must resemble
2183;;
2184;; '\" <string>
2185;;
2186;; where string can be any combination of the following letters that
2187;; specify the sequence of preprocessors to run before nroff or
2188;; troff/groff. Not all installations will have a full set of
2189;; preprocessors. Some of the preprocessors and the letters used to
2190;; designate them are: eqn (e), grap (g), pic (p), tbl (t), vgrind
2191;; (v), refer (r). This option overrides the $MANROFFSEQ environment
2192;; variable. zsoelim is always run as the very first preprocessor.
2193
2194(defvar woman-emulate-tbl nil
2195 "True if WoMan should emulate the tbl preprocessor.
2196This applies to text between .TE and .TS directives.
2197Currently set only from '\" t in the first line of the source file.")
2198
077decde
EZ
2199(defun woman-decode-region (from to)
2200 "Decode the region between FROM and TO in UN*X man-page source format."
2201 ;; Suitable for use in format-alist.
2202 ;; But this requires care to control major mode implied font locking.
2203 ;; Must return the new end of file. See format.el for details.
2204 ;; NB: The `to' argument is bogus: it is not currently used, and if
2205 ;; it were it would need to be a marker rather than a position!
2206 ;; First force the correct environment:
2207 (let ((case-fold-search nil) ; This is necessary!
2208 (woman-string-alist woman-string-alist)
2209 (woman-fill-column woman-fill-column)
2210 woman-negative-vertical-space)
2211 (setq woman-left-margin woman-default-indent
2212 woman-prevailing-indent woman-default-indent
2213 woman-interparagraph-distance 1
2214 woman-leave-blank-lines nil
2215 woman-RS-left-margin nil
2216 woman-RS-prevailing-indent nil
2217 woman-adjust woman-adjust-both
2218 woman-justify (nth woman-adjust woman-justify-list)
2219 woman-nofill nil)
2220
1edbbf8a
EZ
2221 (setq woman-if-conditions-true
2222 (cons (string-to-char (symbol-name woman-emulation)) '(?e ?o)))
2223
077decde
EZ
2224 ;; Prepare non-underlined versions of underlined faces:
2225 (woman-non-underline-faces)
b66e8575 2226 ;; Set font of `woman-symbol' face to `woman-symbol-font' if
1edbbf8a
EZ
2227 ;; `woman-symbol-font' is well defined.
2228 (and woman-use-symbol-font
2229 (stringp woman-symbol-font)
b66e8575 2230 (set-face-font 'woman-symbol woman-symbol-font
1edbbf8a 2231 (and (frame-live-p woman-frame) woman-frame)))
077decde
EZ
2232
2233 ;; Set syntax and display tables:
2234 (set-syntax-table woman-syntax-table)
2235 (woman-set-buffer-display-table)
2236
2237 ;; Based loosely on a suggestion by Theodore Jump:
2238 (if (or woman-fill-frame
2239 (not (and (integerp woman-fill-column) (> woman-fill-column 0))))
bd48e7c6 2240 (setq woman-fill-column (- (window-width) woman-default-indent)))
077decde 2241
2d4c3c85
JB
2242 ;; Check for preprocessor requests:
2243 (goto-char from)
2244 (if (looking-at "'\\\\\"[ \t]*\\([a-z]+\\)")
2245 (let ((letters (append (match-string 1) nil)))
2246 (if (memq ?t letters)
2247 (setq woman-emulate-tbl t
2248 letters (delete ?t letters)))
2249 (if letters
2250 (WoMan-warn "Unhandled preprocessor request letters %s"
2251 (concat letters)))
2252 (woman-delete-line 1)))
2253
077decde
EZ
2254 (woman-pre-process-region from nil)
2255 ;; Process ignore requests, macro definitions,
2256 ;; conditionals and switch source requests:
2257 (woman0-roff-buffer from)
2258
2259 ;; Process \k escapes BEFORE changing tab width (?):
2260 (goto-char from)
2261 (woman-mark-horizonal-position)
2262
2263 ;; Set buffer-local variables:
2264 (setq fill-column woman-fill-column
2265 tab-width woman-tab-width)
2266
2267 ;; Hide unpaddable and digit-width spaces \(space) and \0:
2268 (goto-char from)
2269 (while (re-search-forward "\\\\[ 0]" nil t)
2270 (replace-match woman-unpadded-space-string t t))
2271
2272 ;; Discard optional hyphen \%; concealed newlines \<newline>;
2273 ;; point-size change function \sN,\s+N, \s-N:
2274 (goto-char from)
2275 (while (re-search-forward "\\\\\\([%\n]\\|s[-+]?[0-9]+\\)" nil t)
2276 (woman-delete-match 0))
2277
2278 ;; BEWARE: THIS SHOULD PROBABLY ALL BE DONE MUCH LATER!!!!!
2279 ;; Process trivial escapes \-, \`, \.
2280 ;; (\' must be done after tab processing!):
2281 (goto-char from)
2282 (while (re-search-forward "\\\\\\([-`.]\\)" nil t)
2283 (replace-match "\\1"))
2284 ;; NB: Must keep ALL zero-width characters \&, \|, and \^ until
2285 ;; ALL requests processed!
2286
2287 ;; Process no-break requests and macros (including font-change macros):
2288 (goto-char from)
2289 (woman1-roff-buffer)
2290
2291 ;; Process strings and special character escapes \(xx:
2292 ;; (Must do this BEFORE fontifying!)
2293 (goto-char from)
2294 (woman-strings)
2295 ;; Special chars moved after translation in
2296 ;; `woman2-process-escapes' (for pic.1):
2297; (goto-char from)
2298; (woman-special-characters)
2299
2300 ;; Process standard font-change requests and escapes:
2301 (goto-char from)
2302 (woman-change-fonts)
2303
2304 ;; 1/2 em vertical motion \d, \u and general local vertical motion
2305 ;; \v'+/-N' simulated using TeX ^ and _ symbols for now.
2306 (goto-char from)
2307 (let ((first t)) ; assume no nesting!
2308 (while (re-search-forward "\\\\\\([du]\\|v'[^']*'\\)" nil t)
2309 (let* ((esc (match-string 1))
2310 (repl (if (or (= (aref esc 0) ?u)
2311 (and (>= (length esc) 2) (= (aref esc 2) ?-)))
2312 "^" "_")))
2313 (cond (first
2314 (replace-match repl nil t)
b66e8575 2315 (put-text-property (1- (point)) (point) 'face 'woman-addition)
077decde
EZ
2316 (WoMan-warn
2317 "Initial vertical motion escape \\%s simulated" esc)
2318 (WoMan-log
2319 " by TeX `%s' in woman-addition-face!" repl))
2320 (t
2321 (woman-delete-match 0)
2322 (WoMan-warn
2323 "Terminal vertical motion escape \\%s ignored!" esc)))
2324 (setq first (not first))
2325 )))
2326
2327; ;; \h'+/-N' local horizontal motion.
2328; ;; N may include width escape \w'...'
2329; ;; Implement arbitrary forward motion and non-overlapping backward
2330; ;; motion.
2331; (goto-char from)
2332; (while (re-search-forward
2333; ;; Delimiter can be a special char escape sequence \(.. or
2334; ;; a single normal char (usually '):
2335; "\\\\h\\(\\\\(..\\|.\\)\\(|\\)?"
2336; nil t)
2337; (let ((from (match-beginning 0))
2338; (delim (regexp-quote (match-string 1)))
2339; (absolute (match-string 2)) ; absolute position?
2340; (N (woman-parse-numeric-arg)) ; distance
2341; to
2342; msg) ; for warning
2343; (if (not (looking-at delim))
2344; ;; Warn but leave escape in buffer unprocessed:
2345; (WoMan-warn
2346; "Local horizontal motion (%s) delimiter error!"
2347; (buffer-substring from (1+ (point)))) ; point at end of arg
2348; (setq to (match-end 0)
2349; ;; For possible warning -- save before deleting:
2350; msg (buffer-substring from to))
2351; (delete-region from to)
2352; (if absolute ; make relative
2353; (setq N (- N (current-column))))
2354; (if (>= N 0)
2355; ;; Move forward by inserting hard spaces:
2356; (insert-char woman-unpadded-space-char N)
2357; ;; Move backwards by deleting space,
2358; ;; first backwards then forwards:
2359; (while (and
2360; (<= (setq N (1+ N)) 0)
2361; (cond ((memq (preceding-char) '(?\ ?\t))
2362; (delete-backward-char 1) t)
2363; ((memq (following-char) '(?\ ?\t))
2364; (delete-char 1) t)
2365; (t nil))))
2366; (if (<= N 0)
2367; (WoMan-warn
2368; "Negative horizontal motion (%s) would overwrite!" msg))))
2369; ))
2370
2371 ;; Process formatting macros
2372 (goto-char from)
2373 (woman2-roff-buffer)
2374
2375 ;; Go back and process negative vertical space if necessary:
2376 (if woman-negative-vertical-space
2377 (woman-negative-vertical-space from))
2378
2379 (if woman-preserve-ascii
2380 ;; Re-instate escaped escapes to just `\' and unpaddable
2381 ;; spaces to just `space', without inheriting any text
2382 ;; properties. This is not necessary, UNLESS the buffer is to
2383 ;; be saved as ASCII.
2384 (progn
2385 (goto-char from)
2386 (while (search-forward woman-escaped-escape-string nil t)
2387 (delete-char -1) (insert ?\\))
2388 (goto-char from)
2389 (while (search-forward woman-unpadded-space-string nil t)
2390 (delete-char -1) (insert ?\ ))
2391 ))
2392
2393 ;; Must return the new end of file if used in format-alist.
2394 (point-max)))
2395
2396(defun woman-horizontal-escapes (to)
1edbbf8a
EZ
2397 "Process \\h'+/-N' local horizontal motion escapes upto TO.
2398Implements arbitrary forward and non-overlapping backward motion.
2399Preserves location of `point'."
077decde
EZ
2400 ;; Moved from `woman-decode-region' for version 0.50.
2401 ;; N may include width escape \w'...' (but may already be processed!
2402 (let ((from (point)))
2403 (while (re-search-forward
2404 ;; Delimiter can be a special char escape sequence \(.. or
2405 ;; a single normal char (usually '):
2406 "\\\\h\\(\\\\(..\\|.\\)\\(|\\)?"
2407 to t)
2408 (let ((from (match-beginning 0))
2409 (delim (regexp-quote (match-string 1)))
2410 (absolute (match-string 2)) ; absolute position?
2411 (N (woman-parse-numeric-arg)) ; distance
2412 to
2413 msg) ; for warning
2414 (if (not (looking-at delim))
2415 ;; Warn but leave escape in buffer unprocessed:
2416 (WoMan-warn
2417 "Local horizontal motion (%s) delimiter error!"
2418 (buffer-substring from (1+ (point)))) ; point at end of arg
2419 (setq to (match-end 0)
2420 ;; For possible warning -- save before deleting:
2421 msg (buffer-substring from to))
2422 (delete-region from to)
2423 (if absolute ; make relative
2424 (setq N (- N (current-column))))
2425 (if (>= N 0)
2426 ;; Move forward by inserting hard spaces:
2427 (insert-char woman-unpadded-space-char N)
2428 ;; Move backwards by deleting space,
2429 ;; first backwards then forwards:
2430 (while (and
2431 (<= (setq N (1+ N)) 0)
2432 (cond ((memq (preceding-char) '(?\ ?\t))
2433 (delete-backward-char 1) t)
2434 ((memq (following-char) '(?\ ?\t))
2435 (delete-char 1) t)
2436 (t nil))))
2437 (if (<= N 0)
2438 (WoMan-warn
2439 "Negative horizontal motion (%s) would overwrite!" msg))))
2440 ))
2441 (goto-char from)))
2442
2443
2444\f
1edbbf8a
EZ
2445;; Process ignore requests (.ig), conditionals (.if etc.),
2446;; source-switch (.so), macro definitions (.de etc.) and macro
2447;; expansions.
077decde
EZ
2448
2449(defvar woman0-if-to) ; marker bound in woman0-roff-buffer
2450(defvar woman0-macro-alist) ; bound in woman0-roff-buffer
2451(defvar woman0-search-regex) ; bound in woman0-roff-buffer
2452(defvar woman0-search-regex-start ; bound in woman0-roff-buffer
2453 "^[.'][ \t]*\\(ig\\|if\\|ie\\|el\\|so\\|rn\\|de\\|am")
2454(defconst woman0-search-regex-end "\\)\\([ \t]+\\|$\\)")
2455;; May need other terminal characters, e.g. \, but NOT \n!
2456;; Alternatively, force maximal match (Posix?)
2457
2458(defvar woman0-rename-alist) ; bound in woman0-roff-buffer
2459
2460(defun woman0-roff-buffer (from)
1edbbf8a
EZ
2461 "Process conditional-type requests and user-defined macros.
2462Start at FROM and re-scan new text as appropriate."
077decde
EZ
2463 (goto-char from)
2464 (let ((woman0-if-to (make-marker))
2465 request woman0-macro-alist
2466 (woman0-search-regex-start woman0-search-regex-start)
2467 (woman0-search-regex
2468 (concat woman0-search-regex-start woman0-search-regex-end))
2469 woman0-rename-alist)
2470 (while (re-search-forward woman0-search-regex nil t)
2471 (setq request (match-string 1))
2472 (cond ((string= request "ig") (woman0-ig))
2473 ((string= request "if") (woman0-if "if"))
2474 ((string= request "ie") (woman0-if "ie"))
2475 ((string= request "el") (woman0-el))
2476 ((string= request "so") (woman0-so))
2477 ((string= request "rn") (woman0-rn))
2478 ((string= request "de") (woman0-de))
2479 ((string= request "am") (woman0-de 'append))
2480 (t (woman0-macro request))))
2481 (set-marker woman0-if-to nil)
2482 (woman0-rename)
2483 ;; Should now re-run `woman0-roff-buffer' if any renaming was
2484 ;; done, but let's just hope this is not necessary for now!
2485 ))
2486
2487(defun woman0-ig ()
2488 ".ig yy -- Discard input up to `.yy', which defaults to `..')."
2489 ;; The terminal request MUST begin with . (not ')!
2490 (looking-at "\\(\\S +\\)?")
2491 (beginning-of-line)
2492 (let ((yy (or (match-string 1) "."))
2493 (from (point)))
2494 (if (re-search-forward
2495 (concat "^\\.[ \t]*" (regexp-quote yy) ".*\n") nil t)
2496 (delete-region from (point))
2497 (WoMan-warn
2498 "ig request ignored -- terminator `.%s' not found!" yy)
2499 (woman-delete-line 1))
2500 ))
2501
2502(defsubst woman0-process-escapes (from to)
2503 "Process escapes within an if/ie condition between FROM and TO."
2504 (woman-strings to)
2505 (goto-char from) ; necessary!
2506 ;; Strip font-change escapes:
2d4c3c85 2507 (while (re-search-forward "\\\\f\\(\\[[^]]+\\]\\|(..\\|.\\)" to t)
077decde
EZ
2508 (woman-delete-match 0))
2509 (goto-char from) ; necessary!
2510 (woman2-process-escapes to 'numeric))
2511
2512(defun woman0-if (request)
2513 ".if/ie c anything -- Discard unless c evaluates to true.
2514Remember condition for use by a subsequent `.el'.
2515REQUEST is the invoking directive without the leading dot."
2516 ;; c evaluates to a one-character built-in condition name or
2517 ;; 'string1'string2' or a number > 0, prefix ! negates.
2518 ;; \{ ... \} for multi-line use.
2519 ;; Leaves point at start of new text.
2520 (woman-delete-match 0)
2521 ;; (delete-horizontal-space)
2522 ;; Process escapes in condition:
2523 (let ((from (point)) negated n (c 0))
2524 (set-marker woman0-if-to
2525 (save-excursion (skip-syntax-forward "^ ") (point)))
2526 ;; Process condition:
2527 (if (setq negated (= (following-char) ?!)) (delete-char 1))
2528 (cond
1edbbf8a
EZ
2529 ;; ((looking-at "[no]") (setq c t)) ; accept n(roff) and o(dd page)
2530 ;; ((looking-at "[te]") (setq c nil)) ; reject t(roff) and e(ven page)
2531 ((looking-at "[ntoe]")
2532 (setq c (memq (following-char) woman-if-conditions-true)))
077decde
EZ
2533 ;; Unrecognised letter so reject:
2534 ((looking-at "[A-Za-z]") (setq c nil)
adf79d27 2535 (WoMan-warn "%s %s -- unrecognized condition name rejected!"
077decde
EZ
2536 request (match-string 0)))
2537 ;; Accept strings if identical:
2538 ((save-restriction
2539 (narrow-to-region from woman0-if-to)
2540 ;; String delimiter can be any non-numeric character,
2541 ;; including a special character escape:
2542 (looking-at "\\(\\\\(..\\|[^0-9]\\)\\(.*\\)\\1\\(.*\\)\\1\\'"))
2543 (let ((end1 (copy-marker (match-end 2)))) ; end of first string
2544 ;; Delete 2nd and 3rd delimiters to avoid processing them:
2545 (delete-region (match-end 3) woman0-if-to)
2546 (delete-region (match-end 2) (match-beginning 3))
2547 (goto-char (match-end 1))
2548 (woman0-process-escapes (point) woman0-if-to)
2549 (setq c (string= (buffer-substring (point) end1)
2550 (buffer-substring end1 woman0-if-to)))
2551 (set-marker end1 nil)
2552 (goto-char from)))
2553 ;; Accept numeric value if > 0:
2554 ((numberp (setq n (progn
2555 (woman0-process-escapes from woman0-if-to)
2556 (woman-parse-numeric-arg))))
2557 (setq c (> n 0))
2558 (goto-char from))
2559 )
2560 (if (eq c 0)
2561 (woman-if-ignore woman0-if-to request) ; ERROR!
2562 (woman-if-body request woman0-if-to (eq c negated)))
2563 ))
2564
2565(defun woman-if-body (request to delete) ; should be reversed as `accept'?
1edbbf8a
EZ
2566 "Process if-body, including \\{ ... \\}.
2567REQUEST is the invoking directive without the leading dot.
2568If TO is non-nil then delete the if-body.
2569If DELETE is non-nil then delete from point."
077decde
EZ
2570 ;; Assume concealed newlines already processed.
2571 (let ((from (point)))
2572 (if to (delete-region (point) to))
2573 (delete-horizontal-space)
2574 (cond (;;(looking-at "[^{\n]*\\\\{\\s *") ; multi-line
2575 ;; allow escaped newlines:
2576 (looking-at "[^{\n]*\\(\\\\\n\\)*\\\\{\\s *\\(\\\\\n\\)*") ; multi-line
2577 ;; including preceding .if(s) and following newline
2578 (let ((from (point)))
2579 (woman-delete-match 0)
2580 ;; Allow for nested \{ ... \} -- BUT BEWARE that this
2581 ;; algorithm only supports one level of nesting!
2582 (while
2583 (and (re-search-forward
2584 ;; "\\(\\\\{\\)\\|\\(\n[.']\\)?[ \t]*\\\\}[ \t]*"
2585 ;; Interpret bogus `el \}' as `el \{',
2586 ;; especially for Tcl/Tk man pages:
2587 "\\(\\\\{\\|el[ \t]*\\\\}\\)\\|\\(\n[.']\\)?[ \t]*\\\\}[ \t]*")
2588 (match-string 1))
2589 (re-search-forward "\\\\}"))
2590 (delete-region (if delete from (match-beginning 0)) (point))
2591 (if (looking-at "^$") (delete-char 1))
2592 ))
2593 (delete (woman-delete-line 1)) ; single-line
2594 )
2595 ;; Process matching .el anything:
2596 (cond ((string= request "ie")
2597 ;; Discard unless previous .ie c `evaluated to false'.
2598 (cond ((re-search-forward "^[.'][ \t]*el[ \t]*" nil t)
2599 (woman-delete-match 0)
2600 (woman-if-body "el" nil (not delete)))))
2601 ;; Got here after processing a single-line `.ie' as a body
2602 ;; clause to be discarded:
2603 ((string= request "el")
2604 (cond ((re-search-forward "^[.'][ \t]*el[ \t]*" nil t)
2605 (woman-delete-match 0)
2606 (woman-if-body "el" nil t))))
2607 )
2608 (goto-char from)
2609 ))
2610
2611(defun woman0-el ()
2612 "Isolated .el request -- should not happen!"
2613 (WoMan-warn "el request without matching `ie' rejected!")
2614 (cond (woman-ignore
2615 (woman-delete-match 0)
2616 (delete-horizontal-space)
2617 (woman-if-body "el" nil t))
2618 (t ; Ignore -- leave in buffer
2619 ;; This does not work too well, but it's only for debugging!
2620 (skip-chars-forward "^ \t")
2621 (if (looking-at "[ \t]*\\{") (search-forward "\\}"))
2622 (forward-line 1))))
2623
2624(defun woman-if-ignore (to request)
1edbbf8a 2625 "Ignore but warn about an if request ending at TO, named REQUEST."
077decde
EZ
2626 (WoMan-warn-ignored request "ignored -- condition not handled!")
2627 (if woman-ignore
2628 (woman-if-body request to t)
2629 ;; Ignore -- leave in buffer
2630 ;; This does not work too well, but it's only for debugging!
2631 (skip-chars-forward "^ \t")
2632 (if (looking-at "[ \t]*\\{") (search-forward "\\}"))
2633 (forward-line 1)))
2634
2635(defun woman0-so ()
2636 ".so filename -- Switch source file. `.so' requests may be nested."
2637 ;; Leaves point at start of new text.
2638 ;; (skip-chars-forward " \t")
2639 (let* ((beg (point))
2640 (end (progn (woman-forward-arg 'unquote) (point)))
2641 (name (buffer-substring beg end))
2642 (filename name))
2643 ;; If the specified file does not exist in this ...
2644 (or (file-exists-p filename)
2645 ;; or the parent directory ...
2646 (file-exists-p
2647 (setq filename (concat "../" name)))
2648 ;; then use the WoMan search mechanism to find the filename ...
2649 (setq filename
2650 (woman-file-name
2651 (file-name-sans-extension
2652 (file-name-nondirectory name))))
2653 ;; Cannot find the file, so ...
2654 (kill-buffer (current-buffer))
2655 (error "File `%s' not found" name))
2656 (beginning-of-line)
2657 (woman-delete-line 1)
2658 (let ((from (point))
2659 (to (make-marker))
2660 (length (woman-insert-file-contents filename 0)))
2661 (set-marker to (+ from length))
2662 (woman-pre-process-region from to)
2663 (set-marker to nil)
2664 (goto-char from)
2665 )))
2666
2667\f
2668;;; Process macro definitions:
2669
2670(defun woman0-rn ()
2671 "Process .rn xx yy -- rename macro xx to yy."
2672 ;; For now, done backwards AFTER all macro expansion.
2673 ;; Should also allow requests and strings to be renamed!
2674 (if (eolp) ; ignore if no argument
2675 ()
2676 (let* ((beg (point))
2677 (end (progn (woman-forward-arg 'unquote 'concat) (point)))
2678 (old (buffer-substring beg end))
2679 new)
2680 (if (eolp) ; ignore if no argument
2681 ()
2682 (setq beg (point)
2683 end (progn (woman-forward-arg 'unquote) (point))
2684 new (buffer-substring beg end)
2685 woman0-rename-alist (cons (cons new old) woman0-rename-alist)))
2686 ))
2687 (woman-delete-whole-line))
2688
2689(defun woman0-rename ()
2690 "Effect renaming required by .rn requests."
2691 ;; For now, do this backwards AFTER all macro expansion.
2692 (while woman0-rename-alist
2693 (let* ((new (car woman0-rename-alist))
2694 (old (cdr new))
2695 (new (car new)))
2696 (setq woman0-rename-alist (cdr woman0-rename-alist))
2697 (goto-char (point-min))
2698 (setq new (concat "^[.'][ \t]*" (regexp-quote new)))
2699 (setq old (concat "." old))
2700 (while (re-search-forward new nil t)
2701 (replace-match old nil t)))))
2702
2703(defconst woman-unescape-regex
2704 (concat woman-escaped-escape-string
2705 "\\(" woman-escaped-escape-string "\\)?"))
2706
2707(defsubst woman-unescape (macro)
1edbbf8a 2708 "Replace escape sequences in the body of MACRO.
077decde
EZ
2709Replaces || by |, but | by \, where | denotes the internal escape."
2710 (let (start)
2711 (while (setq start (string-match woman-unescape-regex macro start))
2712 (setq macro
2713 (if (match-string 1 macro)
2714 (replace-match "" t t macro 1)
2715 (replace-match "\\" t t macro))
2716 start (1+ start)))
2717 macro))
2718
2719(defun woman0-de (&optional append)
2720 "Process .de/am xx yy -- (re)define/append macro xx; end at `..'.
2721\(Should be up to call of yy, which defaults to `.')
2722Optional argument APPEND, if non-nil, means append macro."
2723 ;; Modelled on woman-strings. BEWARE: Processing of .am is a hack!
2724 ;; Add support for .rm?
2725 ;; (skip-chars-forward " \t")
2726 (if (eolp) ; ignore if no argument
2727 ()
2728 (looking-at "[^ \t\n]+") ; macro name
2729 (let* ((macro (match-string 0)) from
2730 (previous (assoc macro woman0-macro-alist)))
2731 (if (not previous)
2732 (setq woman0-search-regex-start
2733 (concat woman0-search-regex-start "\\|" (regexp-quote macro))
2734 woman0-search-regex
2735 (concat woman0-search-regex-start woman0-search-regex-end)
2736 ))
2737 ;; Macro body runs from start of next line to line
2738 ;; beginning with `..'."
2739 ;; The terminal request MUST begin with `.' (not ')!
2740 (forward-line)
2741 (setq from (point))
2742 (re-search-forward "^\\.[ \t]*\\.")
2743 (beginning-of-line)
2744 (let ((body (woman-unescape (buffer-substring from (point)))))
2745 (if (and append previous)
2746 (setq previous (cdr previous)
2747 body (concat body (cdr previous))
2748 append (car previous)
2749 ))
2750 (setq macro (cons macro (cons append body))))
2751 ;; This should be an update, but consing a new string
2752 ;; onto the front of the alist has the same effect:
2753 (setq woman0-macro-alist (cons macro woman0-macro-alist))
2754 (forward-line)
2755 (delete-region from (point))
2756 (backward-char) ; return to end of .de/am line
2757 ))
2758 (beginning-of-line) ; delete .de/am line
2759 (woman-delete-line 1))
2760
2761(defun woman0-macro (request)
1edbbf8a 2762 "Process the macro call named REQUEST."
077decde
EZ
2763 ;; Leaves point at start of new text.
2764 (let ((macro (assoc request woman0-macro-alist)))
2765 (if macro
2766 (woman-interpolate-macro (cdr macro))
2767 ;; SHOULD DELETE THE UNINTERPRETED REQUEST!!!!!
2768 ;; Output this message once only per call (cf. strings)?
2769 (WoMan-warn "Undefined macro %s not interpolated!" request))))
2770
2771(defun woman-interpolate-macro (macro)
1edbbf8a 2772 "Interpolate (.de) or append (.am) expansion of MACRO into the buffer."
077decde
EZ
2773 ;; Could make this more efficient by checking which arguments are
2774 ;; actually used in the expansion!
2775 (skip-chars-forward " \t")
2776 ;; Process arguments:
2777 (let ((argno 0) (append (car macro))
2778 argno-string formal-arg from actual-arg start)
2779 (setq macro (cdr macro))
2780 (while (not (eolp))
2781 ;; Get next actual arg:
2782 (setq argno (1+ argno))
2783 (setq argno-string (format "%d" argno))
2784 (setq formal-arg (concat "\\\\\\$" argno-string)) ; regexp
2785 (setq from (point))
2786 (woman-forward-arg 'unquote 'noskip)
2787 (setq actual-arg (buffer-substring from (point)))
2788 (skip-chars-forward " \t") ; now skip following whitespace!
2789 ;; Replace formal arg with actual arg:
2790 (setq start nil)
2791 (while (setq start (string-match formal-arg macro start))
2792 (setq macro (replace-match actual-arg t t macro)))
2793 )
2794 ;; Delete any remaining formal arguments:
2795 (setq start nil)
2796 (while
2797 (setq start (string-match "\\\\\\$." macro start))
2798 (setq macro (replace-match "" t t macro)))
2799 ;; Replace .$ number register with actual arg:
2800 ;; (Do this properly via register mechanism later!)
2801 (setq start nil)
2802 (while
2803 (setq start (string-match "\\\\n(\\.\\$" macro start)) ; regexp
2804 (setq macro (replace-match argno-string t t macro)))
2805 (if append
2806 (forward-char)
2807 (beginning-of-line)
2808 (woman-delete-line 1))
2809 (save-excursion ; leave point at start of new text
2810 (insert macro))))
2811
2812\f
2813;;; Process strings:
2814
2d4c3c85
JB
2815(defun woman-match-name ()
2816 "Match and move over name of form: x, (xx or [xxx...].
2817Applies to number registers, fonts, strings/macros/diversions, and
2818special characters."
2819 (cond ((= (following-char) ?\[ )
2820 (forward-char)
2821 (re-search-forward "[^]]+")
2822 (forward-char)) ; skip closing ]
2823 ((= (following-char) ?\( )
2824 (forward-char)
2825 (re-search-forward ".."))
2826 (t (re-search-forward "."))))
2827
077decde 2828(defun woman-strings (&optional to)
1edbbf8a
EZ
2829 "Process ?roff string requests and escape sequences up to buffer position TO.
2830Strings are defined/updated by `.ds xx string' requests and
2831interpolated by `\*x' and `\*(xx' escapes."
077decde
EZ
2832 ;; Add support for .as and .rm?
2833 (while
2834 ;; Find .ds requests and \* escapes:
2835 (re-search-forward "\\(^[.'][ \t]*ds\\)\\|\\\\\\*" to t)
2836 (cond ((match-string 1) ; .ds
2837 (skip-chars-forward " \t")
2838 (if (eolp) ; ignore if no argument
2839 ()
2840 (re-search-forward "[^ \t\n]+")
2841 (let ((string (match-string 0)))
2842 (skip-chars-forward " \t")
2843; (setq string
2844; (cons string
2845; ;; hack (?) for CGI.man!
2846; (cond ((looking-at "\"\"") "\"")
2847; ((looking-at ".*") (match-string 0)))
2848; ))
2849 ;; Above hack causes trouble in arguments!
2850 (looking-at ".*")
2851 (setq string (cons string (match-string 0)))
2852 ;; This should be an update, but consing a new string
2853 ;; onto the front of the alist has the same effect:
2854 (setq woman-string-alist (cons string woman-string-alist))
2855 ))
2856 (beginning-of-line)
2857 (woman-delete-line 1))
2858 (t ; \*
2859 (let ((beg (match-beginning 0)))
2d4c3c85 2860 (woman-match-name)
077decde
EZ
2861 (let* ((stringname (match-string 0))
2862 (string (assoc stringname woman-string-alist)))
2863 (cond (string
2864 (delete-region beg (point))
2865 ;; Temporary hack in case string starts with a
2866 ;; control character:
2867 (if (bolp) (insert-before-markers "\\&"))
2868 (insert-before-markers (cdr string)))
2869 (t
2870 (WoMan-warn "Undefined string %s not interpolated!"
2871 stringname)
2872 (cond (woman-ignore
2873 ;; Output above message once only per call
2874 (delete-region beg (point))
2875 (setq woman-string-alist
2876 (cons (cons stringname "")
2877 woman-string-alist))))
2878 ))
2879 ))
2880 ))
2881 ))
2882
2883\f
2884;;; Process special character escapes \(xx:
2885
2886(defconst woman-special-characters
2887 ;; To be built heuristically as required!
2888 ;; MUST insert all characters as strings for correct conversion to
2889 ;; multibyte representation!
2890 '(("em" "--" "\276" . t) ; 3/4 Em dash
2891 ("bu" "*" "\267" . t) ; bullet
2892 ("fm" "'") ; foot mark
2893 ("co" "(C)" "\251") ; copyright
2894
2895 ("pl" "+" "+" . t) ; math plus
2896 ("mi" "-" "-" . t) ; math minus
2897 ("**" "*" "*" . t) ; math star
2898 ("aa" "'" "\242" . t) ; acute accent
2899 ("ul" "_") ; underrule
2900
2901 ("*S" "Sigma" "S" . t) ; Sigma
2902
2903 (">=" ">=" "\263" . t) ; >=
2904 ("<=" "<=" "\243" . t) ; <=
2905 ("->" "->" "\256" . t) ; right arrow
2906 ("<-" "<-" "\254" . t) ; left arrow
2907 ("mu" " x " "\264" . t) ; multiply
2908 ("+-" "+/-" "\261" . t) ; plus-minus
2909 ("bv" "|") ; bold vertical
2910
2911 ;; groff etc. extensions:
2912 ("lq" "\"")
2913 ("rq" "\"")
2914 ("aq" "'")
2915 ("ha" "^")
2916 ("ti" "~")
2917 )
2918 "Alist of special character codes with ASCII and extended-font equivalents.
2919Each alist elements has the form
2920 (input-string ascii-string extended-font-string . use-symbol-font)
2921where
2922 * `\\(input-string' is the ?roff encoding,
2923 * `ascii-string' is the (multi-character) ASCII simulation,
2924 * `extended-font-string' is the single-character string representing
2925 the character position in the extended 256-character font, and
2926 * `use-symbol-font' is t to indicate use of the symbol font or nil,
2927 i.e. omitted, to indicate use of the default font.
2928Any element may be nil. Avoid control character codes (0 to \\37, \\180
2929to \\237) in `extended-font-string' for now, since they can be
2930displayed only with a modified display table.
2931
1edbbf8a 2932Use the WoMan command `woman-display-extended-fonts' or a character
077decde
EZ
2933map accessory to help construct this alist.")
2934
1edbbf8a
EZ
2935(defsubst woman-replace-match (newtext &optional face)
2936 "Replace text matched by last search with NEWTEXT and return t.
2937Set NEWTEXT in face FACE if specified."
2938 (woman-delete-match 0)
2939 (insert-before-markers newtext)
b66e8575 2940 (if face (put-text-property (1- (point)) (point) 'face 'woman-symbol))
1edbbf8a
EZ
2941 t)
2942
077decde 2943(defun woman-special-characters (to)
2d4c3c85 2944 "Process special character escapes \\(xx, \\[xxx] up to buffer position TO.
1edbbf8a 2945\(This must be done AFTER translation, which may use special characters.)"
2d4c3c85
JB
2946 (while (re-search-forward "\\\\\\(?:(\\(..\\)\\|\\[\\([[^]]+\\)\\]\\)" to t)
2947 (let* ((name (or (match-string-no-properties 1)
2948 (match-string-no-properties 2)))
2949 (replacement (assoc name woman-special-characters)))
2950 (unless
2951 (and
077decde 2952 replacement
1edbbf8a
EZ
2953 (cond ((and (cddr replacement)
2954 (if (nthcdr 3 replacement)
2955 ;; Need symbol font:
2956 (if woman-use-symbol-font
2957 (woman-replace-match (nth 2 replacement)
b66e8575 2958 'woman-symbol))
1edbbf8a
EZ
2959 ;; Need extended font:
2960 (if woman-use-extended-font
2961 (woman-replace-match (nth 2 replacement))))))
077decde 2962 ((cadr replacement) ; Use ASCII simulation
1edbbf8a 2963 (woman-replace-match (cadr replacement)))))
2d4c3c85
JB
2964 (WoMan-warn (concat "Special character "
2965 (if (match-string 1) "\\(%s" "\\[%s]")
2966 " not interpolated!") name)
077decde
EZ
2967 (if woman-ignore (woman-delete-match 0))))
2968 ))
2969
2970(defun woman-display-extended-fonts ()
1edbbf8a
EZ
2971 "Display table of glyphs of graphic characters and their octal codes.
2972All the octal codes in the ranges [32..127] and [160..255] are displayed
077decde 2973together with the corresponding glyphs from the default and symbol fonts.
1edbbf8a 2974Useful for constructing the alist variable `woman-special-characters'."
077decde
EZ
2975 (interactive)
2976 (with-output-to-temp-buffer "*WoMan Extended Font Map*"
2977 (save-excursion
2978 (set-buffer standard-output)
2979 (let ((i 32))
2980 (while (< i 256)
2981 (insert (format "\\%03o " i) (string i) " " (string i))
2982 (put-text-property (1- (point)) (point)
b66e8575 2983 'face 'woman-symbol)
077decde
EZ
2984 (insert " ")
2985 (setq i (1+ i))
2986 (when (= i 128) (setq i 160) (insert "\n"))
2987 (if (zerop (% i 8)) (insert "\n")))
2988 ))
2989 (print-help-return-message)))
2990
2991\f
2992;;; Formatting macros that do not cause a break:
2993
2994(defvar request) ; Bound locally by woman1-roff-buffer
2995(defvar unquote) ; Bound locally by woman1-roff-buffer
2996
2997(defun woman-unquote (to)
2998 "Delete any double-quote characters between point and TO.
2999Leave point at TO (which should be a marker)."
3000 (let (in-quote)
3001 (while (search-forward "\"" to 1)
3002 (if (and in-quote (looking-at "\""))
3003 ;; Repeated double-quote represents single double-quote
3004 (delete-char 1)
3005 (if (or in-quote (looking-at ".*\"")) ; paired
3006 (delete-char -1))
3007 (setq in-quote (not in-quote))
3008 ))
3009 (if in-quote
3010 (WoMan-warn "Unpaired \" in .%s arguments." request))
3011 ))
3012
3013(defsubst woman-unquote-args ()
3014 "Delete any double-quote characters up to the end of the line."
3015 (woman-unquote (save-excursion (end-of-line) (point-marker))))
3016
3017(defun woman1-roff-buffer ()
3018 "Process non-breaking requests."
3019 (let ((case-fold-search t)
3020 request fn unquote)
3021 (while
3022 ;; Find next control line:
3023 (re-search-forward woman-request-regexp nil t)
3024 (cond
3025 ;; Construct woman function to call:
3026 ((setq fn (intern-soft
3027 (concat "woman1-"
3028 (setq request (match-string 1)))))
3029 (if (get fn 'notfont) ; not a font-change request
3030 (funcall fn)
3031 ;; Delete request or macro name:
3032 (woman-delete-match 0)
3033 ;; If no args then apply to next line else unquote args
3034 ;; (unquote is used by called function):
3035 (setq unquote (not (eolp)))
3036 (if (eolp) (delete-char 1))
3037; ;; Hide leading control character in unquoted argument:
3038; (cond ((memq (following-char) '(?. ?'))
3039; (insert "\\&")
3040; (beginning-of-line)))
3041 ;; Call the appropriate function:
3042 (funcall fn)
3043 ;; Hide leading control character in quoted argument (only):
3044 (if (and unquote (memq (following-char) '(?. ?')))
3045 (insert "\\&"))
3046 )
3047 )))))
3048
3049;;; Font-changing macros:
3050
3051(defun woman1-B ()
3052 ".B -- Set words of current line in bold font."
3053 (woman1-B-or-I ".ft B\n"))
3054
3055(defun woman1-I ()
3056 ".I -- Set words of current line in italic font."
3057 (woman1-B-or-I ".ft I\n"))
3058
3059(defun woman1-B-or-I (B-or-I)
3060 ".B/I -- Set words of current line in bold/italic font.
1edbbf8a 3061B-OR-I is the appropriate complete control line."
077decde
EZ
3062 ;; Should NOT concatenate the arguments!
3063 (insert B-or-I) ; because it might be a control line
3064 ;; Return to bol to process .SM/.B, .B/.if etc.
3065 ;; or start of first arg to hide leading control char.
3066 (save-excursion
3067 (if unquote
3068 (woman-unquote-args)
3069 (while (looking-at "^[.']") (forward-line))
3070 (end-of-line)
3071 (delete-horizontal-space))
3072 (insert "\\fR")))
3073
3074(defun woman1-SM ()
3075 ".SM -- Set the current line in small font, i.e. IGNORE!"
3076 nil)
3077
3078(defalias 'woman1-SB 'woman1-B)
3079;; .SB -- Set the current line in small bold font, i.e. just embolden!
1edbbf8a 3080;; (This is what /usr/local/share/groff/tmac/tmac.an does. The
077decde
EZ
3081;; Linux man.7 is wrong about this!)
3082
3083(defun woman1-BI ()
3084 ".BI -- Join words of current line alternating bold and italic fonts."
3085 (woman1-alt-fonts (list "\\fB" "\\fI")))
3086
3087(defun woman1-BR ()
3088 ".BR -- Join words of current line alternating bold and Roman fonts."
3089 (woman1-alt-fonts (list "\\fB" "\\fR")))
3090
3091(defun woman1-IB ()
3092 ".IB -- Join words of current line alternating italic and bold fonts."
3093 (woman1-alt-fonts (list "\\fI" "\\fB")))
3094
3095(defun woman1-IR ()
3096 ".IR -- Join words of current line alternating italic and Roman fonts."
3097 (woman1-alt-fonts (list "\\fI" "\\fR")))
3098
3099(defun woman1-RB ()
3100 ".RB -- Join words of current line alternating Roman and bold fonts."
3101 (woman1-alt-fonts (list "\\fR" "\\fB")))
3102
3103(defun woman1-RI ()
3104 ".RI -- Join words of current line alternating Roman and italic fonts."
3105 (woman1-alt-fonts (list "\\fR" "\\fI")))
3106
3107(defun woman1-alt-fonts (fonts)
3108 "Join words using alternating fonts in FONTS, which MUST be a dynamic list."
3109 (nconc fonts fonts) ; circular list!
3110 (insert (car fonts))
3111 ;; Return to start of first arg to hide leading control char:
3112 (save-excursion
3113 (setq fonts (cdr fonts))
3114 (woman-forward-arg unquote 'concat) ; unquote is bound above
3115 (while (not (eolp))
3116 (insert (car fonts))
3117 (setq fonts (cdr fonts))
3118 (woman-forward-arg unquote 'concat)) ; unquote is bound above
3119 (insert "\\fR")
3120 ))
3121
3122(defun woman-forward-arg (&optional unquote concat)
1edbbf8a
EZ
3123 "Move forward over one ?roff argument, optionally unquoting and/or joining.
3124If optional arg UNQUOTE is non-nil then delete any argument quotes.
3125If optional arg CONCAT is non-nil then join arguments."
077decde
EZ
3126 (if (eq (following-char) ?\")
3127 (progn
3128 (if unquote (delete-char 1) (forward-char))
3129 (re-search-forward "\"\\|$")
3130 ;; Repeated double-quote represents single double-quote
3131 (while (eq (following-char) ?\") ; paired
3132 (if unquote (delete-char 1) (forward-char))
3133 (re-search-forward "\"\\|$"))
3134 (if (eq (preceding-char) ?\")
3135 (if unquote (delete-backward-char 1))
3136 (WoMan-warn "Unpaired \" in .%s arguments." request)
3137 ))
3138 ;; (re-search-forward "[^\\\n] \\|$") ; inconsistent
3139 (skip-syntax-forward "^ "))
3140 (cond ((null concat) (skip-chars-forward " \t")) ; don't skip eol!
3141 ((eq concat 'noskip)) ; do not skip following whitespace
3142 (t (woman-delete-following-space)))
3143 )
3144
3145
1edbbf8a
EZ
3146;; The following requests are not explicit font-change requests and
3147;; so are flagged `notfont' to turn off automatic request deletion
3148;; and further processing.
077decde
EZ
3149
3150(put 'woman1-TP 'notfont t)
3151(defun woman1-TP ()
3152 ".TP -- After tag line, reset font to Roman for paragraph body."
3153 ;; Same for .IP, but forward only 1 line?
3154 (save-excursion
3155 ;; May be an `irrelevant' control line in the way, so ...
3156 (forward-line)
3157 (forward-line (if (looking-at "\\.\\S-+[ \t]*$") 2 1))
3158 ;; May be looking at control line, so ...
3159 (insert ".ft R\n")))
3160
3161(put 'woman1-ul 'notfont t)
3162(defun woman1-ul ()
3163 ".ul N -- Underline (italicize) the next N input lines, default N = 1."
3164 (let ((N (if (eolp) 1 (woman-parse-numeric-arg)))) ; woman-get-numeric-arg ?
3165 (woman-delete-whole-line)
3166 (insert ".ft I\n")
3167 (forward-line N)
3168 (insert ".ft R\n")
3169 ))
3170
1edbbf8a 3171;;; Other non-breaking requests:
077decde
EZ
3172
3173;; Hyphenation
3174;; Warnings commented out.
3175
3176(put 'woman1-nh 'notfont t)
3177(defun woman1-nh ()
3178 ".nh -- No hyphenation, i.e. IGNORE!"
3179 ;; Must be handled here to avoid breaking!
3180 ;; (WoMan-log-1 ".nh request ignored -- hyphenation not supported!")
3181 (woman-delete-whole-line))
3182
3183(put 'woman1-hy 'notfont t)
3184(defun woman1-hy ()
3185 ".hy N -- Set hyphenation mode to N, i.e. IGNORE!"
3186 ;; (WoMan-log-1 ".hy request ignored -- hyphenation not supported!")
3187 (woman-delete-whole-line))
3188
3189(put 'woman1-hc 'notfont t)
3190(defun woman1-hc ()
3191 ".hc c -- Set hyphenation character to c, i.e. delete it!"
3192 (let ((c (char-to-string (following-char))))
3193 ;; (WoMan-log
3194 ;; "Hyphenation character %s deleted -- hyphenation not supported!" c)
3195 (woman-delete-whole-line)
3196 (setq c (concat "\\(" c "\\)\\|^[.'][ \t]*hc"))
3197 (save-excursion
3198 (while (and (re-search-forward c nil t)
3199 (match-string 1))
3200 (delete-char -1)))
3201 ))
3202
3203(put 'woman1-hw 'notfont t)
3204(defun woman1-hw ()
3205 ".hw words -- Set hyphenation exception words, i.e. IGNORE!"
3206 ;; (WoMan-log-1 ".hw request ignored -- hyphenation not supported!")
3207 (woman-delete-whole-line))
3208
1edbbf8a 3209;;; Other non-breaking requests correctly ignored by nroff:
077decde
EZ
3210
3211(put 'woman1-ps 'notfont t)
3212(defalias 'woman1-ps 'woman-delete-whole-line)
3213 ;; .ps -- Point size -- IGNORE!
3214
3215(put 'woman1-ss 'notfont t)
3216(defalias 'woman1-ss 'woman-delete-whole-line)
3217 ;; .ss -- Space-character size -- IGNORE!
3218
3219(put 'woman1-cs 'notfont t)
3220(defalias 'woman1-cs 'woman-delete-whole-line)
3221 ;; .cs -- Constant character space (width) mode -- IGNORE!
3222
3223(put 'woman1-ne 'notfont t)
3224(defalias 'woman1-ne 'woman-delete-whole-line)
3225 ;; .ne -- Need vertical space -- IGNORE!
3226
3227(put 'woman1-vs 'notfont t)
3228(defalias 'woman1-vs 'woman-delete-whole-line)
3229 ;; .vs -- Vertical base line spacing -- IGNORE!
3230
3231(put 'woman1-bd 'notfont t)
3232(defalias 'woman1-bd 'woman-delete-whole-line)
3233 ;; .bd -- Embolden font -- IGNORE!
3234
1edbbf8a 3235;;; Non-breaking SunOS-specific macros:
077decde
EZ
3236
3237(defun woman1-TX ()
3238 ".TX t p -- Resolve SunOS abbrev t and join to p (usually punctuation)."
3239 (insert "SunOS ")
3240 (woman-forward-arg 'unquote 'concat))
3241
3242(put 'woman1-IX 'notfont t)
3243(defalias 'woman1-IX 'woman-delete-whole-line)
3244 ;; .IX -- Index macro, for Sun internal use -- IGNORE!
3245
3246\f
3247;;; Direct font selection:
3248
3249(defconst woman-font-alist
3250 '(("R" . default)
b66e8575
MB
3251 ("I" . woman-italic)
3252 ("B" . woman-bold)
077decde
EZ
3253 ("P" . previous)
3254 ("1" . default)
b66e8575
MB
3255 ("2" . woman-italic)
3256 ("3" . woman-bold) ; used in bash.1
077decde
EZ
3257 )
3258 "Alist of ?roff font indicators and woman font variables and names.")
3259
3260(defun woman-change-fonts ()
3261 "Process font changes."
3262 ;; ***** NEEDS REVISING IF IT WORKS OK *****
3263 ;; Paragraph .LP/PP/HP/IP/TP and font .B/.BI etc. macros reset font.
3264 ;; Should .SH/.SS reset font?
3265 ;; Font size setting macros (?) should reset font.
692feebd 3266 (let ((font-alist woman-font-alist) ; for local updating
077decde
EZ
3267 (previous-pos (point))
3268 (previous-font 'default)
3269 (current-font 'default))
3270 (while
3271 ;; Find font requests, paragraph macros and font escapes:
3272 (re-search-forward
3273 "^[.'][ \t]*\\(\\(\\ft\\)\\|\\(.P\\)\\)\\|\\(\\\\f\\)" nil 1)
3274 (let (font beg notfont)
3275 ;; Match font indicator and leave point at end of sequence:
3276 (cond ((match-string 2)
3277 ;; .ft request found
3278 (setq beg (match-beginning 0))
3279 (skip-chars-forward " \t")
3280 (if (eolp) ; default is previous font
3281 (setq font previous-font)
3282 (looking-at "[^ \t\n]+"))
3283 (forward-line)) ; end of control line and \n
3284 ((match-string 3)
3285 ;; Macro that resets font found
3286 (setq font 'default))
3287 ((match-string 4)
3288 ;; \f escape found
3289 (setq beg (match-beginning 0))
2d4c3c85 3290 (woman-match-name))
077decde
EZ
3291 (t (setq notfont t)))
3292 (if notfont
3293 ()
3294 ;; Get font name:
3295 (or font
3296 (let ((fontstring (match-string 0)))
692feebd
EZ
3297 (setq font (assoc fontstring font-alist)
3298 ;; NB: font-alist contains VARIABLE NAMES.
077decde
EZ
3299 font (if font
3300 (cdr font)
3301 (WoMan-warn "Unknown font %s." fontstring)
3302 ;; Output this message once only per call ...
692feebd 3303 (setq font-alist
b66e8575 3304 (cons (cons fontstring 'woman-unknown)
692feebd 3305 font-alist))
b66e8575 3306 'woman-unknown)
077decde
EZ
3307 )))
3308 ;; Delete font control line or escape sequence:
3309 (cond (beg (delete-region beg (point))
3310 (if (eq font 'previous) (setq font previous-font))))
3311 (woman-set-face previous-pos (point) current-font)
3312 (if beg
3313 ;; Explicit font control
3314 (setq previous-pos (point)
3315 previous-font current-font)
3316 ;; Macro that resets font
3317 ;; (forward-line) ; DOES NOT WORK! but unnecessary?
3318 ;; Must process font changes in any paragraph tag!
3319 (setq previous-pos (point)
3320 previous-font 'default))
3321 (setq current-font font)
3322 )))
3323 ;; Set font after last request up to eob:
3324 (woman-set-face previous-pos (point) current-font)
3325 ))
3326
3327(defun woman-set-face (from to face)
3328 "Set the face of the text from FROM to TO to face FACE.
3329Ignore the default face and underline only word characters."
3330 (or (eq face 'default) ; ignore
3331 (not woman-fontify)
3332 (if (face-underline-p face)
3333 (save-excursion
3334 (let ((face-no-ul (intern (concat (symbol-name face) "-no-ul"))))
3335 (goto-char from)
3336 (while (< (point) to)
3337 (skip-syntax-forward "w" to)
3338 (put-text-property from (point) 'face face)
3339 (setq from (point))
3340 (skip-syntax-forward "^w" to)
3341 (put-text-property from (point) 'face face-no-ul)
3342 (setq from (point))
3343 )))
3344 (put-text-property from to 'face face))
3345 ))
3346
3347\f
3348;;; Output translation:
3349
3350(defvar translations nil) ; Also bound locally by woman2-roff-buffer
3351;; A list of the form (\"[ace]\" (a . b) (c . d) (e . ?\ )) or nil.
3352
3353(defun woman-get-next-char ()
3354 "Return and delete next char in buffer, including special chars."
3355 (if ;;(looking-at "\\\\(\\(..\\)")
2d4c3c85
JB
3356 ;; Match special \(xx and strings \*[xxx], \*(xx, \*x:
3357 (looking-at "\\\\\\((..\\|\\*\\(\\[[^]]+\\]\\|(..\\|.\\)\\)")
077decde
EZ
3358 (prog1 (match-string 0)
3359 (woman-delete-match 0))
3360 (prog1 (char-to-string (following-char))
3361 (delete-char 1))))
3362
3363(defun woman2-tr (to)
3364 ".tr abcde -- Translate a -> b, c -> d, ..., e -> space.
1edbbf8a
EZ
3365Format paragraphs upto TO. Supports special chars.
3366\(Breaks, but should not.)"
077decde
EZ
3367 ;; This should be an update, but consing onto the front of the alist
3368 ;; has the same effect and match duplicates should not matter.
3369 ;; Initialize translation data structures:
3370 (let ((matches (car translations))
3371 (alist (cdr translations))
3372 a b)
3373 ;; `matches' must be a string:
3374 (setq matches
3375 (concat (if matches (substring matches 1 -1)) "]"))
3376 ;; Process .tr arguments:
3377 (while (not (eolp)) ; (looking-at "[ \t]*$") ???
3378 (setq a (woman-get-next-char))
3379 (if (eolp)
3380 (setq b " ")
3381 (setq b (woman-get-next-char)))
3382 (setq matches
3383 (if (= (length a) 1)
3384 (concat a matches)
3385 (concat matches "\\|\\" a))
3386 alist (cons (cons a b) alist)))
3387 (delete-char 1) ; no blank line
3388 ;; Rebuild translations list:
3389 (setq matches
3390 (if (= (string-to-char matches) ?\])
3391 (substring matches 3)
3392 (concat "[" matches))
3393 translations (cons matches alist))
3394 ;; Format any following text:
3395 (woman2-format-paragraphs to)
3396 ))
3397
3398(defsubst woman-translate (to)
3399 "Translate up to marker TO. Do this last of all transformations."
3400 (if translations
3401 (let ((matches (car translations))
3402 (alist (cdr translations)))
3403 (while (re-search-forward matches to t)
3404 ;; Done like this to retain text properties and
3405 ;; support translation of special characters:
3406 (insert-before-markers-and-inherit
3407 (cdr (assoc
3408 (buffer-substring-no-properties
3409 (match-beginning 0) (match-end 0))
3410 alist)))
3411 (woman-delete-match 0))
3412 )))
3413
3414\f
3415;;; Registers:
3416
3417(defvar woman-registers ; these are all read-only
3418 '((".H" 24) (".V" 48) ; resolution in basic units
3419 (".g" 0) ; not groff
3420 ;; (Iff emulating groff need to implement groff italic correction
3421 ;; \/, e.g. for pic.1)
3422 (".i" left-margin) ; current indent
3423 (".j" woman-adjust) ; current adjustment
3424 (".l" fill-column) ; current line length
3425 (".s" 12) ; current point size
3426 (".u" (if woman-nofill 0 1)) ; 1/0 in fill/nofill mode
3427 (".v" 48) ; current vertical line spacing
3428 )
3429 "Register alist: the key is the register name as a string.
3430Each element has the form (KEY VALUE . INC) -- inc may be nil.
3431Also bound locally in `woman2-roff-buffer'.")
3432
3433(defun woman-mark-horizonal-position ()
3434 "\\kx -- Store current horizontal position in INPUT LINE in register x."
3435 (while (re-search-forward "\\\\k\\(.\\)" nil t)
3436 (goto-char (match-beginning 0))
3437 (setq woman-registers
3438 (cons (list (match-string 1) (current-column))
3439 woman-registers))
3440 (woman-delete-match 0)))
3441
3442(defsubst woman2-process-escapes-to-eol (&optional numeric)
3443 "Process remaining escape sequences up to eol.
3444Handle numeric arguments specially if optional argument NUMERIC is non-nil."
3445 (woman2-process-escapes
3446 (save-excursion (end-of-line) (point-marker))
3447 numeric))
3448
3449(defun woman2-nr (to)
1edbbf8a 3450 ".nr R +/-N M -- Assign +/-N (wrt to previous value, if any) to register R.
077decde 3451The increment for auto-incrementing is set to M.
1edbbf8a 3452Format paragraphs upto TO. (Breaks, but should not!)"
077decde
EZ
3453 (let* ((name (buffer-substring
3454 (point)
3455 (progn (skip-syntax-forward "^ ") (point))))
3456 (pm (progn ; increment
3457 (skip-chars-forward " \t")
3458 (when (memq (char-after) '(?+ ?-))
3459 (forward-char) (char-before))))
3460 (value (if (eolp) ; no value
3461 nil ; to be interpreted as zero
3462 (woman2-process-escapes-to-eol 'numeric)
3463 (woman-parse-numeric-arg)))
3464 (inc (progn ; auto-increment
3465 (skip-chars-forward " \t")
3466 (if (eolp) ; no value
3467 nil ; to be interpreted as zero ???
3468 (woman-parse-numeric-arg))))
3469 (oldvalue (assoc name woman-registers)))
3470 (when oldvalue
3471 (setq oldvalue (cdr oldvalue)) ; (value . inc)
3472 (unless inc (setq inc (cdr oldvalue))))
3473 (cond ((null value)
3474 (setq value 0) ; correct?
3475 (WoMan-warn "nr %s -- null value assigned as zero!" name))
3476 ((symbolp value)
3477 (setq value (list 'quote value))))
3478 (if pm ; increment old value
3479 (setq oldvalue (if oldvalue (car oldvalue) 0)
3480 value (if (eq pm ?+)
3481 (+ oldvalue value)
3482 (- oldvalue value))))
3483 (setq woman-registers
3484 (cons (cons name (cons value inc)) woman-registers))
3485 (woman-delete-whole-line)
3486 (woman2-format-paragraphs to)))
3487
3488\f
3489;;; Numeric (and "non-text") request arguments:
3490
3491(defsubst woman-get-numeric-arg ()
1edbbf8a 3492 "Get the value of a numeric argument at or after point.
077decde 3493The argument can include the width function and scale indicators.
1edbbf8a 3494Assumes 10 characters per inch. Does not move point."
077decde
EZ
3495 (woman2-process-escapes-to-eol 'numeric)
3496 (save-excursion (woman-parse-numeric-arg)))
3497
3498(defun woman-parse-numeric-arg ()
3499 "Get the value of a numeric expression at or after point.
3500Unlike `woman-get-numeric-arg', leaves point after the argument.
3501The expression may be an argument in quotes."
3502 (if (= (following-char) ?\") (forward-char))
3503 ;; Allow leading +/-:
3504 (let ((value (if (looking-at "[+-]") 0 (woman-parse-numeric-value)))
3505 op)
3506 (while (cond
3507 ((looking-at "[+-/*%]") ; arithmetic operators
3508 (forward-char)
3509 (setq op (intern-soft (match-string 0)))
3510 (setq value (funcall op value (woman-parse-numeric-value))))
3511 ((looking-at "[<=>]=?") ; relational operators
3512 (goto-char (match-end 0))
3513 (setq op (or (intern-soft (match-string 0))
3514 (intern-soft "=")))
3515 (setq value (if (funcall op value (woman-parse-numeric-value))
3516 1 0)))
3517 ((memq (setq op (following-char)) '(?& ?:)) ; Boolean and / or
3518 (forward-char)
3519 (setq value
3520 ;; and / or are special forms, not functions, in ELisp
3521 (if (eq op ?&)
3522 ;; and
3523 (if (> value 0)
3524 (if (> (woman-parse-numeric-value) 0) 1 0)
3525 ;; skip second operand
3526 (prog1 0 (woman-parse-numeric-value)))
3527 ;; or
3528 (if (> value 0)
3529 ;; skip second operand
3530 (prog1 1 (woman-parse-numeric-value))
3531 (if (> (woman-parse-numeric-value) 0) 1 0))
3532 )))
3533 ))
3534; (if (looking-at "[ \t\nRC\)\"]") ; R, C are tab types
3535; ()
3536; (WoMan-warn "Unimplemented numerical operator `%c' in %s"
3537; (following-char)
3538; (buffer-substring
3539; (save-excursion (beginning-of-line) (point))
3540; (save-excursion (end-of-line) (point))))
3541; (skip-syntax-forward "^ "))
3542 value
3543 ))
3544
3545(defun woman-parse-numeric-value ()
3546 "Get a single numeric value at or after point.
1edbbf8a
EZ
3547The value can be a number register or width function (which assumes 10
3548characters per inch) and can include scale indicators. It may be an
3549expression in parentheses. Leaves point after the value."
077decde
EZ
3550 ;; Must replace every \' by some different single character first
3551 ;; before calling this function by calling
3552 ;; (woman2-process-escapes-to-eol 'numeric)
3553 (if (eq (following-char) ?\()
3554 ;; Treat parenthesized expression as a single value.
3555 (let (n)
3556 (forward-char)
3557 (setq n (woman-parse-numeric-arg))
3558 (skip-syntax-forward " ")
3559 (if (eq (following-char) ?\))
3560 (forward-char)
3561 (WoMan-warn "Parenthesis confusion in numeric expression!"))
3562 n)
3563 (let ((n (cond ((looking-at "[-+]?[.0-9]+") ; single number
3564 ;; currently needed to set match-end, even though
3565 ;; string-to-number returns 0 if number not parsed.
3566 (string-to-number (match-string 0)))
2d4c3c85
JB
3567 ((looking-at "\\\\n\\([-+]\\)?\\(?:\
3568\\[\\([^]]+\\)\\]\\|\(\\(..\\)\\|\\(.\\)\\)")
077decde
EZ
3569 ;; interpolate number register, maybe auto-incremented
3570 (let* ((pm (match-string-no-properties 1))
2d4c3c85
JB
3571 (name (or (match-string-no-properties 2)
3572 (match-string-no-properties 3)
077decde
EZ
3573 (match-string-no-properties 4)))
3574 (value (assoc name woman-registers)))
3575 (if value
3576 (let (inc)
3577 (setq value (cdr value) ; (value . inc)
3578 inc (cdr value)
3579 ;; eval internal (.X) registers
3580 ;; stored as lisp variable names:
3581 value (eval (car value)))
3582 (if (and pm inc) ; auto-increment
3583 (setq value
3584 (funcall (intern-soft pm) value inc)
3585 woman-registers
3586 (cons (cons name (cons value inc))
3587 woman-registers)))
3588 value)
3589 (WoMan-warn "Undefined register %s defaulted to 0."
3590 name)
3591 0) ; default to zero
3592 ))
3593 ((re-search-forward
2d4c3c85
JB
3594 ;; Delimiter can be special char escape \[xxx],
3595 ;; \(xx or single normal char (usually '):
3596 "\\=\\\\w\\(\\\\\\[[^]]+\\]\\|\\\\(..\\|.\\)" nil t)
077decde
EZ
3597 (let ((from (match-end 0))
3598 (delim (regexp-quote (match-string 1))))
3599 (if (re-search-forward delim nil t)
3600 ;; Return width of string:
3601 (- (match-beginning 0) from)
3602 (WoMan-warn "Width escape delimiter error!"))))
3603 )))
3604 (if (null n)
3605 ;; ERROR -- should handle this better!
3606 (progn
3607 (WoMan-warn "Numeric/register argument error: %s"
3608 (buffer-substring
3609 (point)
3610 (save-excursion (end-of-line) (point))))
3611 (skip-syntax-forward "^ ")
3612 0)
3613 (goto-char (match-end 0))
3614 ;; Check for scale factor:
3615 (if
3616 (cond
3617 ((looking-at "\\s ") nil) ; stay put!
3618 ((looking-at "[mnuv]")) ; ignore for now
3619 ((looking-at "i") (setq n (* n 10))) ; inch
3620 ((looking-at "c") (setq n (* n 3.9))) ; cm
3621 ((looking-at "P") (setq n (* n 1.7))) ; Pica
3622 ((looking-at "p") (setq n (* n 0.14))) ; point
3623 ;; NB: May be immediately followed by + or -, etc.,
3624 ;; in which case do nothing and return nil.
3625 )
3626 (goto-char (match-end 0)))
3627 (if (numberp n) (round n) n))
3628 )))
3629
3630\f
3631;;; VERTICAL FORMATTING -- Formatting macros that cause a break:
3632
1edbbf8a
EZ
3633;; Vertical spacing philosophy:
3634;; Delete all vertical space as it is encountered. Then insert
3635;; vertical space only before text, as required.
077decde
EZ
3636
3637(defun woman2-roff-buffer ()
3638 "Process breaks. Format paragraphs and headings."
3639 (let ((case-fold-search t)
3640 (to (make-marker))
3641 (canonically-space-region
3642 (symbol-function 'canonically-space-region))
3643 (insert-and-inherit (symbol-function 'insert-and-inherit))
3644 (set-text-properties (symbol-function 'set-text-properties))
3645 (woman-registers woman-registers)
3646 fn request translations
3647 tab-stop-list)
3648 ;; ?roff does not squeeze multiple spaces, but does fill, so...
3649 (fset 'canonically-space-region 'ignore)
3650 ;; Try to avoid spaces inheriting underlines from preceding text!
3651 (fset 'insert-and-inherit (symbol-function 'insert))
3652 (fset 'set-text-properties 'ignore)
3653 (unwind-protect
3654 (while
3655 ;; Find next control line:
3656 (re-search-forward woman-request-regexp nil t)
3657 (cond
3658 ;; Construct woman function to call:
3659 ((setq fn (intern-soft
3660 (concat "woman2-"
3661 (setq request (match-string 1)))))
3662 ;; Delete request or macro name:
3663 (woman-delete-match 0))
3664 ;; Unrecognised request:
3665 ((prog1 nil
3666 ;; (WoMan-warn ".%s request ignored!" request)
3667 (WoMan-warn-ignored request "ignored!")
3668 ;; (setq fn 'woman2-LP)
3669 ;; AVOID LEAVING A BLANK LINE!
3670 ;; (setq fn 'woman2-format-paragraphs)
3671 ))
3672 ;; .LP assumes it is at eol and leaves a (blank) line,
3673 ;; so leave point at end of line before paragraph:
3674 ((or (looking-at "[ \t]*$") ; no argument
3675 woman-ignore) ; ignore all
3676 ;; (beginning-of-line) (kill-line)
3677 ;; AVOID LEAVING A BLANK LINE!
3678 (beginning-of-line) (woman-delete-line 1))
3679 (t (end-of-line) (insert ?\n))
3680 )
3681 (if (not (or fn
3682 (and (not (memq (following-char) '(?. ?')))
3683 (setq fn 'woman2-format-paragraphs))))
3684 ()
3685 ;; Find next control line:
3686 (set-marker to (woman-find-next-control-line))
3687 ;; Call the appropriate function:
3688 (funcall fn to)))
3689 (if (not (eobp)) ; This should not happen, but ...
3690 (woman2-format-paragraphs (point-max-marker) woman-left-margin))
3691 (fset 'canonically-space-region canonically-space-region)
3692 (fset 'set-text-properties set-text-properties)
3693 (fset 'insert-and-inherit insert-and-inherit)
3694 (set-marker to nil))))
3695
3696(defun woman-find-next-control-line ()
3697 "Find and return start of next control line."
3698; (let ((to (save-excursion
3699; (re-search-forward "^\\." nil t))))
3700; (if to (1- to) (point-max)))
3701 (let (to)
3702 (save-excursion
3703 ;; Must handle
3704 ;; ...\c
3705 ;; .br (and other requests?)
3706 ;; by deleting both the \c and the following request.
3707 ;; BEWARE THAT THIS CODE MAY BE UNRELIABLE!!!!!
3708 (while
3709 (and
3710 (setq to (re-search-forward "\\(\\\\c\\)?\n[.']" nil t))
3711 (match-string 1)
3712 (looking-at "br"))
3713 (goto-char (match-beginning 0))
3714 (woman-delete-line 2)))
3715 (if to (1- to) (point-max))))
3716
3717(defun woman2-PD (to)
3718 ".PD d -- Set the interparagraph distance to d.
1edbbf8a 3719Round to whole lines, default 1 line. Format paragraphs upto TO.
2d4c3c85 3720\(Breaks, but should not.)"
077decde
EZ
3721 ;; .ie \\n[.$] .nr PD (v;\\$1)
3722 ;; .el .nr PD .4v>?\n[.V]
3723 (woman-set-interparagraph-distance)
3724 (woman2-format-paragraphs to))
3725
3726(defun woman-set-interparagraph-distance ()
1edbbf8a 3727 "Set the interparagraph distance from a .PD request at point."
077decde
EZ
3728 (setq woman-interparagraph-distance
3729 (if (eolp) 1 (woman-get-numeric-arg)))
3730 ;; Should allow .PD 0 to set zero line spacing
3731 (woman-delete-line 1)) ; ignore remaining args
3732
3733(defsubst woman-interparagraph-space ()
1edbbf8a 3734 "Set variable `woman-leave-blank-lines' from `woman-interparagraph-distance'."
077decde
EZ
3735; (if (> woman-interparagraph-distance 0)
3736; (forward-line 1) ; leave 1 blank line
3737; (woman-delete-line 1)) ; do not leave blank line
3738 (setq woman-leave-blank-lines woman-interparagraph-distance)
3739 )
3740
3741(defun woman2-TH (to)
1edbbf8a
EZ
3742 ".TH n c x v m -- Begin a man page. Format paragraphs upto TO.
3743n is the name of the page in chapter c\; x is extra commentary\;
3744v alters page foot left; m alters page head center.
3745\(Should set prevailing indent and tabs to 5.)"
077decde
EZ
3746 (woman-forward-arg 'unquote 'concat)
3747 (insert ?\()
3748 (woman-forward-arg 'unquote 'concat)
3749 (insert ?\))
3750 (let ((start (point)) here)
3751 (while (not (eolp))
3752 (cond ((looking-at "\"\"[ \t]")
3753 (delete-char 2)
3754 ;; (delete-horizontal-space)
3755 ))
3756 (delete-horizontal-space)
3757 (setq here (point))
3758 (insert " -- ")
3759 (woman-forward-arg 'unquote 'concat)
3760 ;; Delete repeated arguments:
3761 (if (string-match (buffer-substring here (point))
3762 (buffer-substring start here))
3763 (delete-region here (point)))
3764 ))
3765 ;; Embolden heading (point is at end of heading):
3766 (woman-set-face
b66e8575 3767 (save-excursion (beginning-of-line) (point)) (point) 'woman-bold)
077decde
EZ
3768 (forward-line)
3769 (delete-blank-lines)
3770 (setq woman-left-margin woman-default-indent)
3771 (setq woman-prevailing-indent woman-default-indent)
3772 (woman2-format-paragraphs to woman-left-margin))
3773
3774(defun woman2-SH (to)
1edbbf8a
EZ
3775 ".SH -- Sub-head. Leave blank line and subhead.
3776Format paragraphs upto TO. Set prevailing indent to 5."
077decde
EZ
3777 (if (eolp) ; If no args then
3778 (delete-char 1) ; apply to next line
3779 (woman-unquote-args) ; else unquote to end of heading
3780 (beginning-of-line))
3781 (woman2-process-escapes-to-eol)
3782 (woman-leave-blank-lines woman-interparagraph-distance)
3783 (setq woman-leave-blank-lines nil)
3784 ;; Optionally embolden heading (point is at beginning of heading):
3785 (if woman-bold-headings
3786 (woman-set-face
b66e8575 3787 (point) (save-excursion (end-of-line) (point)) 'woman-bold))
077decde
EZ
3788 (forward-line)
3789 (setq woman-left-margin woman-default-indent
3790 woman-nofill nil) ; fill output lines
3791 (setq woman-prevailing-indent woman-default-indent)
3792 (woman2-format-paragraphs to woman-left-margin))
3793
3794(defun woman2-SS (to)
1edbbf8a
EZ
3795 ".SS -- Sub-sub-head. Like .SH but indent heading 3 spaces.
3796Format paragraphs upto TO."
077decde
EZ
3797 (if (eolp) ; If no args then
3798 (delete-char 1)) ; apply to next line.
3799 (insert " ")
3800 (beginning-of-line)
3801 (woman2-SH to))
3802
3803(defun woman2-LP (to)
1edbbf8a
EZ
3804 ".LP,.PP -- Begin paragraph. Set prevailing indent to 5.
3805Leave 1 blank line. Format paragraphs upto TO."
077decde
EZ
3806 (woman-delete-line 1) ; ignore any arguments
3807 (woman-interparagraph-space)
3808 (setq woman-prevailing-indent woman-default-indent)
3809 (woman2-format-paragraphs to woman-left-margin))
3810
3811(defalias 'woman2-PP 'woman2-LP)
3812(defalias 'woman2-P 'woman2-LP)
3813
3814(defun woman2-ns (to)
1edbbf8a 3815 ".ns -- Turn on no-space mode. Format paragraphs upto TO."
077decde
EZ
3816 ;; Should not cause a break!
3817 (woman-delete-line 1) ; ignore argument(s)
3818 (setq woman-nospace t)
3819 (woman2-format-paragraphs to))
3820
3821(defun woman2-rs (to)
1edbbf8a 3822 ".rs -- Turn off no-space mode. Format paragraphs upto TO."
077decde
EZ
3823 ;; Should not cause a break!
3824 (woman-delete-line 1) ; ignore argument(s)
3825 (setq woman-nospace nil)
3826 (woman2-format-paragraphs to))
3827
3828(defun woman2-sp (to)
1edbbf8a 3829 ".sp N -- If N > 0 then leave 1 blank line. Format paragraphs upto TO."
077decde
EZ
3830 (let ((N (if (eolp) 1 (woman-get-numeric-arg))))
3831 (if (>= N 0)
3832 (woman-delete-line 1) ; ignore argument(s)
3833 (setq woman-negative-vertical-space t)
3834 (insert ".sp ")
3835 (forward-line))
3836 (setq woman-leave-blank-lines N)
3837 (woman2-format-paragraphs to)))
3838
3839(defun woman-negative-vertical-space (from)
3840 ".sp N with N < 0 => overlap following with preceding lines at FROM."
3841 ;; Run by woman-decode-region if necessary -- not usually required.
3842 (WoMan-warn "Negative vertical spacing support is experimental!")
3843 (goto-char from)
3844 (while
3845 ;; Find next control line:
3846 (re-search-forward "^\\.sp " nil t)
3847 (let ((N (woman-get-numeric-arg))
3848 overlap overwritten)
3849 (woman-delete-whole-line)
3850 (setq from (point)
3851 overlap (buffer-substring from
3852 (progn (forward-line (- N)) (point))))
3853 (delete-region from (point))
3854 (forward-line N)
3855 (let ((imax (length overlap))
3856 (i 0) c)
3857 (while (< i imax)
3858 (setq c (aref overlap i))
3859 (cond ((eq c ?\n) ; skip
3860 (forward-line))
3861 ((eolp) ; extend line
3862 ;; Insert character INCLUDING TEXT PROPERTIES:
3863 ;; (insert (substring overlap i (1+ i)))
3864 (let ((eol (string-match "\n" overlap i)))
3865 (insert (substring overlap i eol))
3866 (setq i (or eol imax)))
3867 )
3868 ((eq c ?\ ) ; skip
3869 (forward-char))
3870 ((eq c ?\t) ; skip
3871 (if (eq (following-char) ?\t)
3872 (forward-char) ; both tabs, just skip
3873 (let ((i woman-tab-width))
3874 (while (> i 0)
3875 (if (eolp)
3876 (insert ?\ ) ; extend line
3877 (forward-char)) ; skip
3878 (setq i (1- i)))
3879 )))
3880 (t
3881 (if (or (eq (following-char) ?\ ) ; overwrite OK
3882 overwritten) ; warning only once per ".sp -"
3883 ()
3884 (setq overwritten t)
3885 (WoMan-warn
3886 "Character(s) overwritten by negative vertical spacing in line %d"
3887 (count-lines 1 (point))))
3888 (delete-char 1) (insert (substring overlap i (1+ i)))))
3889 (setq i (1+ i))
3890 ))
3891 )))
3892
3893\f
3894;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3895;; The following function should probably do ALL width and number
3896;; register interpolation.
3897;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3898
3899(defun woman2-process-escapes (to &optional numeric)
3900 "Process remaining escape sequences up to marker TO, preserving point.
3901Optional argument NUMERIC, if non-nil, means the argument is numeric."
3902 ;; The first two cases below could be merged (maybe)!
3903 (let ((from (point)))
3904 ;; Discard zero width filler character used to hide leading dots
3905 ;; and zero width characters \|, \^:
3906 (while (re-search-forward "\\\\[&|^]" to t)
3907 (woman-delete-match 0))
3908 (goto-char from)
3909 ;; Interrupt text processing -- CONTINUE current text with the
3910 ;; next text line (after any control lines, unless processing to
3911 ;; eol):
3912 (while (re-search-forward "\\\\c.*\n?" to t)
3913 (woman-delete-match 0))
3914 ;; but do not delete the final newline ...
3915 (if (and (or (eobp) (= (point) to)) (not (bolp)))
3916 (insert-before-markers ?\n))
3917 (goto-char from)
3918 (woman-translate to)
3919 (goto-char from)
3920 (woman-special-characters to)
3921 (goto-char from)
3922 ;; Printable version of the current escape character, ASSUMED to be `\'
3923 ;; This must be done LAST of all escape processing!
3924 ;; Done like this to preserve any text properties of the `\'
3925 (while (search-forward "\\" to t)
3926 (let ((c (following-char)))
3927 (cond ((eq c ?') ; \' -> '
3928 (delete-char -1)
3929 (cond (numeric ; except in numeric args, \' -> `
3930 (delete-char 1)
3931 (insert ?`))))
3932 ((eq c ?\( )) ; uninterpreted special character
3933 ; \(.. -- do nothing
3934 ((eq c ?t) ; non-interpreted tab \t
3935 (delete-char 1)
3936 (delete-char -1)
3937 (insert "\t"))
3938 ((and numeric
3939 (memq c '(?w ?n ?h)))) ; leave \w, \n, \h (?????)
3940 ((eq c ?l) (woman-horizontal-line))
3941 (t
3942 ;; \? -> ? where ? is any remaining character
3943 (WoMan-warn "Escape ignored: \\%c -> %c" c c)
3944 (delete-char -1))
3945 )))
3946 (goto-char from)
3947 ;; Process non-default tab settings:
3948 (cond (tab-stop-list
3949 (while (search-forward "\t" to t)
3950 (woman-tab-to-tab-stop))
3951 (goto-char from)))
3952
3953 ;; Must replace \' by something before processing \w, done above.
3954
3955 ;; Replace all `\w' and `\n' escapes:
3956 ;; (This may be a bit too recursive!)
3957 (while (re-search-forward "\\\\[nw]" to t)
3958 (let ((from (match-beginning 0)) N)
3959 (goto-char from)
3960 (setq N (woman-parse-numeric-value))
3961 (delete-region from (point))
3962 ;; Interpolate value:
3963 (insert-before-markers (number-to-string N))))
3964 (goto-char from)))
3965
3966(defun woman-horizontal-line ()
3967 "\\l'Nc' -- Draw a horizontal line of length N using character c, default _."
3968 (delete-char -1)
3969 (delete-char 1)
3970 (looking-at "\\(.\\)\\(.*\\)\\1")
3971 (let ((to (make-marker)) from N c)
3972 (set-marker to (match-end 2))
3973 (delete-char 1)
3974 (setq from (point)
3975 N (woman-parse-numeric-arg))
3976 (setq c (if (< (point) to) (following-char) ?_))
3977 (delete-region from to)
3978 (delete-char 1)
3979 (set-marker to nil)
3980 (insert (make-string N c))
3981 ))
3982
3983;;; 4. Text Filling, Adjusting, and Centering
3984
3985(defun woman2-br (to)
1edbbf8a 3986 ".br -- Break. Leave no blank line. Format paragraphs upto TO."
077decde
EZ
3987 (woman-delete-line 1) ; ignore any arguments
3988 (woman2-format-paragraphs to))
3989
3990(defun woman2-fi (to)
1edbbf8a
EZ
3991 ".fi -- Fill subsequent output lines. Leave no blank line.
3992Format paragraphs upto TO."
077decde
EZ
3993 (setq woman-nofill nil)
3994 (woman-delete-line 1) ; ignore any arguments
3995 ;; Preserve any final blank line in the nofill region:
3996 (save-excursion
3997 (forward-line -1)
3998 (if (looking-at "[ \t]*$") (setq woman-leave-blank-lines 1)))
3999 (woman2-format-paragraphs to))
4000
4001(defun woman2-nf (to)
1edbbf8a
EZ
4002 ".nf -- Nofill. Subsequent lines are neither filled nor adjusted.
4003Input text lines are copied directly to output lines without regard
4004for the current line length. Format paragraphs upto TO."
077decde
EZ
4005 (setq woman-nofill t)
4006 (woman-delete-line 1) ; ignore any arguments
4007 (woman2-format-paragraphs to))
4008
4009(defun woman2-ad (to)
1edbbf8a
EZ
4010 ".ad c -- Line adjustment is begun (once fill mode is on).
4011Set justification mode to c if specified.
4012Format paragraphs upto TO. (Breaks, but should not.)"
077decde
EZ
4013 ;; c = l -- left, r -- right, c -- center, b or n -- both,
4014 ;; absent -- unchanged. Initial mode adj,both.
4015 (setq woman-adjust
4016 (cond ((eolp) woman-adjust-previous)
4017 ((eq (following-char) ?l) woman-adjust-left)
4018 ((eq (following-char) ?r) woman-adjust-right)
4019 ((eq (following-char) ?c) woman-adjust-center)
4020 ((memq (following-char) '(?b ?n)) woman-adjust-both)
4021 (t (woman-get-numeric-arg))
4022 )
4023 woman-justify (nth woman-adjust woman-justify-list))
4024 (woman-delete-line 1) ; ignore any remaining arguments
4025 (woman2-format-paragraphs to))
4026
4027(defun woman2-na (to)
1edbbf8a 4028 ".na -- No adjusting. Format paragraphs upto TO.
2d4c3c85 4029\(Breaks, but should not.)"
077decde
EZ
4030 (setq woman-adjust-previous woman-adjust
4031 woman-justify-previous woman-justify
4032 woman-adjust woman-adjust-left ; fill but do not adjust
4033 woman-justify (nth woman-adjust woman-justify-list))
4034 (woman-delete-line 1) ; ignore any arguments
4035 (woman2-format-paragraphs to))
4036
4037;;; The main formatting functions:
4038
4039(defun woman-leave-blank-lines (&optional leave)
4040 "Delete all blank lines around point.
1edbbf8a
EZ
4041Leave one blank line if optional argument LEAVE is non-nil and
4042non-zero, or if LEAVE is nil and variable `woman-leave-blank-lines' is
4043non-nil and non-zero."
077decde
EZ
4044 ;; ***** It may suffice to delete only lines ABOVE point! *****
4045 ;; NOTE: Function arguments are evaluated left to right
4046 ;; (*note (elisp)Function Forms::.).
4047 (delete-region
4048 (save-excursion
4049 (if (not (eq (skip-syntax-backward " ") 0))
4050 (forward-line)) ; forward-char ?
4051 (point))
4052 (progn (skip-syntax-forward " ")
4053 (beginning-of-line)
4054 (point)))
4055 (if woman-nospace
4056 ()
4057 (if (or (null leave) (eq leave 0))
4058 ;; output any `pending' vertical space ...
4059 (setq leave woman-leave-blank-lines))
4060 (if (and leave (> leave 0)) (insert-before-markers ?\n))
4061 )
4062 (setq woman-leave-blank-lines nil)
4063 )
4064
4065;; `fill-region-as-paragraph' in `fill.el' appears to be the principal
4066;; text filling function, so that is what I use here.
4067
4068(defvar woman-temp-indent nil)
4069
4070(defun woman2-format-paragraphs (to &optional new-left)
1edbbf8a
EZ
4071 "Indent, fill and adjust paragraphs upto TO to current left margin.
4072If optional arg NEW-LEFT is non-nil then reset current left margin.
4073If `woman-nofill' is non-nil then indent without filling or adjusting."
077decde
EZ
4074 ;; Blank space should only ever be output before text.
4075 (if new-left (setq left-margin new-left))
4076 (if (looking-at "^\\s *$")
4077 ;; A blank line should leave a space like .sp 1 (p. 14).
4078 (setq woman-leave-blank-lines 1))
4079 (skip-syntax-forward " ")
4080 ;; Successive control lines are sufficiently common to be worth a
4081 ;; special case (maybe):
4082 (if (>= (point) to) ; >= as a precaution!
4083 ()
4084 ;; (woman-leave-blank-lines)
4085 (woman-reset-nospace)
4086 ;; (woman2-process-escapes to) ; 7 October 1999
4087 (woman2-process-escapes to 'numeric)
4088 (if woman-nofill
4089 ;; Indent without filling or adjusting ...
4090 (progn
4091 (woman-leave-blank-lines)
4092 (cond (woman-temp-indent
4093 (indent-to woman-temp-indent)
4094 (forward-line)))
4095 (indent-rigidly (point) to left-margin)
4096 (woman-horizontal-escapes to)) ; 7 October 1999
4097 ;; Fill and justify ...
4098 ;; Blank lines and initial spaces cause a break.
4099; (cond ((and (= (point) to) (not (looking-at ".nf"))) ; Yuk!!!
4100; ;; No text after a request that caused a break, so delete
4101; ;; any spurious blank line left:
4102; (forward-line -1)
4103; (if (looking-at "^\\s *$") (kill-line) (forward-line))))
4104 (while (< (point) to)
4105 (woman-leave-blank-lines)
4106 (let ((from (point)))
4107 ;; Indent first lin of paragraph:
4108 (indent-to (or woman-temp-indent left-margin))
4109 (woman-horizontal-escapes to) ; 7 October 1999
4110 ;; Find the beginning of the next paragraph:
4111 (forward-line)
4112; (if (re-search-forward "\\(^\\s *$\\)\\|\\(^\\s +\\)" to 1)
4113; ;; A blank line should leave a space like .sp 1 (p. 14).
4114; (if (eolp)
4115; (progn
4116; (skip-syntax-forward " ")
4117; (setq woman-leave-blank-lines 1))
4118; (setq woman-leave-blank-lines nil)))
4119 (and (re-search-forward "\\(^\\s *$\\)\\|\\(^\\s +\\)" to 1)
4120 ;; A blank line should leave a space like .sp 1 (p. 14).
4121 (eolp)
4122 (skip-syntax-forward " ")
4123 (setq woman-leave-blank-lines 1))
4124 (beginning-of-line)
4125 ;; If a single short line then just leave it.
4126 ;; This is necessary to preserve some table layouts.
4127 ;; PROBABLY NOT NECESSARY WITH SQUEEZE MODIFICATION !!!!!
4128 (if (or (> (count-lines from (point)) 1)
4129 (save-excursion
4130 (backward-char)
4131 (> (current-column) fill-column)))
4132 ;; ?roff does not squeeze multiple spaces
4133 ;; (fill-region-as-paragraph from (point) woman-justify t)
4134 ;; NOSQUEEZE has no effect if JUSTIFY is full, so
4135 ;; redefine canonically-space-region, see above.
4136 (progn
4137 ;; Needs a re-write of the paragraph formatter to
4138 ;; avoid this nonsense to handle temporary indents!
4139 (if (and woman-temp-indent (< woman-temp-indent left-margin))
4140 (let ((left-margin woman-temp-indent))
4141 (fill-region-as-paragraph from (point) woman-justify)
4142 (save-excursion
4143 (goto-char from)
4144 (forward-line)
4145 (setq from (point)))))
4146 (fill-region-as-paragraph from (point) woman-justify))
4147 )
4148 ;; A blank line should leave a space like .sp 1 (p. 14).
4149 ;; Delete all but 1 trailing blank lines:
4150 ;;(woman-leave-blank-lines 1)
4151 ))
4152 )
4153 (setq woman-temp-indent nil)
4154 ;; Non-white-space text has been processed, so ...
4155 ;;(setq woman-leave-blank-lines nil)
4156 ))
4157
4158\f
4159;;; Tagged, indented and hanging paragraphs:
4160
4161(defun woman2-TP (to)
1edbbf8a 4162 ".TP i -- Set prevailing indent to i. Format paragraphs upto TO.
077decde
EZ
4163Begin indented paragraph with hanging tag given by next text line.
4164If tag doesn't fit, place it on a separate line."
4165 (let ((i (woman2-get-prevailing-indent)))
4166 (woman-leave-blank-lines woman-interparagraph-distance)
4167 (woman2-tagged-paragraph to i)))
4168
4169(defun woman2-IP (to)
1edbbf8a 4170 ".IP x i -- Same as .TP with tag x. Format paragraphs upto TO."
077decde
EZ
4171 (woman-interparagraph-space)
4172 (if (eolp) ; no args
4173 ;; Like LP without resetting prevailing indent
4174 (woman2-format-paragraphs to (+ woman-left-margin
4175 woman-prevailing-indent))
4176 (woman-forward-arg 'unquote)
4177 (let ((i (woman2-get-prevailing-indent 'leave-eol)))
4178 (beginning-of-line)
4179 (woman-leave-blank-lines) ; must be here,
4180 (woman2-tagged-paragraph to i))))
4181
4182(defun woman-find-next-control-line-carefully ()
4183 "Find and return start of next control line, even if already there!"
4184 (if (looking-at "^[.']")
4185 (point)
4186 (woman-find-next-control-line)))
4187
4188(defun woman2-tagged-paragraph (to i)
1edbbf8a
EZ
4189 "Begin indented paragraph with hanging tag given by current text line.
4190If tag doesn't fit, leave it on separate line.
4191Format paragraphs upto TO. Set prevailing indent to I."
077decde
EZ
4192 (if (not (looking-at "\\s *$")) ; non-empty tag
4193 (setq woman-leave-blank-lines nil))
4194
4195 ;; Temporary hack for bash.1 and groff_mmse.7 until code is revised
4196 ;; to process all requests uniformly:
4197 (cond ((and (= (point) to) (looking-at "^[.'][ \t]*\\(PD\\|br\\|ta\\) *"))
4198 (if (string= (match-string 1) "br")
4199 (woman-delete-line 1)
4200 (woman-delete-match 0)
4201 (if (string= (match-string 1) "ta") ; for GetInt.3
4202 (woman2-ta to)
4203 (woman-set-interparagraph-distance)))
4204 (set-marker to (woman-find-next-control-line-carefully))
4205 ))
4206
4207 (let ((tag (point)))
4208 (woman-reset-nospace)
4209 ;; Format the tag:
4210 (woman2-process-escapes-to-eol)
4211 ;; TIDY UP THE FOLLOWING CODE
4212 ;; (indent-to woman-left-margin)
4213 (setq left-margin woman-left-margin)
4214 (forward-line)
4215 (fill-region-as-paragraph (save-excursion (forward-line -1) (point))
4216 (point) woman-justify)
4217
4218 ;; Temporary hack for bash.1 until all requests processed uniformly:
4219 (cond ((and (= (point) to) (looking-at "^[.'][ \t]*PD *"))
4220 (woman-delete-match 0)
4221 (woman-set-interparagraph-distance)
4222 (set-marker to (woman-find-next-control-line-carefully))
4223 ))
4224
4225 ;; Format the paragraph body, if there is one! Set indented left
4226 ;; margin anyway, because the paragraph body may begin with a
4227 ;; control line:
4228 (setq left-margin (+ woman-left-margin i))
4229 (cond ((< (point) to)
4230 (woman2-format-paragraphs to)
4231 (goto-char tag) (end-of-line)
4232 (cond ((> (setq i (- left-margin (current-column))) 0)
4233 (delete-char 1)
4234 (delete-horizontal-space)
4235 ;; Necessary to avoid spaces inheriting underlines.
4236 ;; Cannot simply delete (current-column) whitespace
4237 ;; characters because some may be tabs!
4238 (while (> i 0) (insert ? ) (setq i (1- i)))))
4239 (goto-char to) ; necessary ???
4240 ))
4241 ))
4242
4243(defun woman2-HP (to)
1edbbf8a 4244 ".HP i -- Set prevailing indent to i. Format paragraphs upto TO.
077decde
EZ
4245Begin paragraph with hanging indent."
4246 (let ((i (woman2-get-prevailing-indent)))
4247 (woman-interparagraph-space)
4248 (setq woman-temp-indent woman-left-margin)
4249 (woman2-format-paragraphs to (+ woman-left-margin i))
4250 ))
4251
4252(defun woman2-get-prevailing-indent (&optional leave-eol)
1edbbf8a
EZ
4253 "Set prevailing indent to integer argument at point, and return it.
4254If no argument then return the existing prevailing indent.
077decde
EZ
4255Delete line from point and eol unless LEAVE-EOL is non-nil."
4256 (if (eolp)
4257 (or leave-eol (delete-char 1))
4258 (let ((i (woman-get-numeric-arg)))
4259 (woman-delete-line) (or leave-eol (delete-char 1))
4260 ;; i = 0 if the argument was not a number
4261 (if (> i 0) (setq woman-prevailing-indent i))))
4262 woman-prevailing-indent)
4263
4264(defmacro woman-push (value stack)
4265 "Push VALUE onto STACK."
4266 `(setq ,stack (cons ,value ,stack)))
4267
4268(defmacro woman-pop (variable stack)
1edbbf8a 4269 "Pop into VARIABLE the value at the top of STACK.
077decde
EZ
4270Allow for mismatched requests!"
4271 `(if ,stack
4272 (setq ,variable (car ,stack)
4273 ,stack (cdr ,stack))))
4274
4275(defun woman2-RS (to)
1edbbf8a
EZ
4276 ".RS i -- Start relative indent, move left margin in distance i.
4277Set prevailing indent to 5 for nested indents. Format paragraphs upto TO."
077decde
EZ
4278 (woman-push woman-left-margin woman-RS-left-margin)
4279 (woman-push woman-prevailing-indent woman-RS-prevailing-indent)
4280 (setq woman-left-margin (+ woman-left-margin
4281 (woman2-get-prevailing-indent))
4282 woman-prevailing-indent woman-default-indent)
4283 (woman2-format-paragraphs to woman-left-margin))
4284
4285(defun woman2-RE (to)
1edbbf8a 4286 ".RE -- End of relative indent. Format paragraphs upto TO.
077decde
EZ
4287Set prevailing indent to amount of starting .RS."
4288 (woman-pop woman-left-margin woman-RS-left-margin)
4289 (woman-pop woman-prevailing-indent woman-RS-prevailing-indent)
4290 (woman-delete-line 1) ; ignore any arguments
4291 (woman2-format-paragraphs to woman-left-margin))
4292
4293\f
4294;;; Line Length and Indenting:
4295
4296(defun woman-set-arg (arg &optional previous)
1edbbf8a
EZ
4297 "Reset, increment or decrement argument ARG, which must be quoted.
4298If no argument then use value of optional arg PREVIOUS if non-nil,
4299otherwise set PREVIOUS. Delete the whole remaining control line."
077decde
EZ
4300 (if (eolp) ; space already skipped
4301 (set arg (if previous (eval previous) 0))
4302 (if previous (set previous (eval arg)))
4303 (woman2-process-escapes-to-eol 'numeric)
4304 (let ((pm (if (looking-at "[+-]")
4305 (prog1 (following-char)
4306 (forward-char 1))))
4307 (i (woman-parse-numeric-arg)))
4308 (cond ((null pm) (set arg i))
4309 ((= pm ?+) (set arg (+ (eval arg) i)))
4310 ((= pm ?-) (set arg (- (eval arg) i)))
4311 ))
4312 (beginning-of-line))
4313 (woman-delete-line 1)) ; ignore any remaining arguments
4314
4315;; NEED TO RATIONALIZE NAMES FOR PREVIOUS VALUES!
4316(defvar woman-ll-fill-column woman-fill-column)
4317(defvar woman-in-left-margin woman-left-margin)
4318
4319(defun woman2-ll (to)
1edbbf8a
EZ
4320 ".ll +/-N -- Set, increment or decrement line length.
4321Format paragraphs upto TO. (Breaks, but should not.)"
077decde
EZ
4322 (woman-set-arg 'fill-column 'woman-ll-fill-column)
4323 (woman2-format-paragraphs to))
4324
4325(defun woman2-in (to)
1edbbf8a
EZ
4326 ".in +/-N -- Set, increment or decrement the indent.
4327Format paragraphs upto TO."
077decde
EZ
4328 (woman-set-arg 'left-margin 'woman-in-left-margin)
4329 (woman2-format-paragraphs to))
4330
4331(defun woman2-ti (to)
1edbbf8a 4332 ".ti +/-N -- Temporary indent. Format paragraphs upto TO."
077decde
EZ
4333 ;; Ignore if no argument.
4334 ;; Indent next output line only wrt current indent.
4335 ;; Current indent is not changed.
4336 (setq woman-temp-indent left-margin)
4337 (woman-set-arg 'woman-temp-indent)
4338 (woman2-format-paragraphs to nil))
4339
4340\f
4341;;; Tabs, Leaders, and Fields:
4342
4343(defun woman2-ta (to)
1edbbf8a
EZ
4344 ".ta Nt ... -- Set tabs, left type, unless t=R(right), C(centered).
4345\(Breaks, but should not.) The tab stops are separated by spaces\;
4346a value preceded by + represents an increment to the previous stop value.
4347Format paragraphs upto TO."
077decde
EZ
4348 (setq tab-stop-list nil)
4349 (woman2-process-escapes-to-eol 'numeric)
4350 (save-excursion
4351 (let ((tab-stop 0))
4352 (while (not (eolp))
4353 (let ((plus (cond ((eq (following-char) ?+) (forward-char 1) t)))
4354 (i (woman-parse-numeric-arg)))
4355 (setq tab-stop (if plus (+ tab-stop i) i)))
4356 (if (memq (following-char) '(?R ?C))
4357 (setq tab-stop (cons tab-stop (following-char))))
4358 (setq tab-stop-list (cons tab-stop tab-stop-list))
4359 (skip-syntax-forward "^ ") ; skip following R, C, `;', etc.
4360 (skip-chars-forward " \t")
4361 )))
4362 (woman-delete-line 1) ; ignore any remaining arguments
4363 (setq tab-stop-list (reverse tab-stop-list))
4364 (woman2-format-paragraphs to))
4365
4366(defsubst woman-get-tab-stop (tab-stop-list)
4367 "If TAB-STOP-LIST is a cons, return its car, else return TAB-STOP-LIST."
4368 (if (consp tab-stop-list) (car tab-stop-list) tab-stop-list))
4369
4370(defun woman-tab-to-tab-stop ()
4371 "Insert spaces to next defined tab-stop column.
1edbbf8a
EZ
4372The variable `tab-stop-list' is a list whose elements are either left
4373tab stop columns or pairs (COLUMN . TYPE) where TYPE is R or C."
077decde
EZ
4374 ;; Based on tab-to-tab-stop in indent.el.
4375 ;; R & C tabs probably not quite right!
4376 (delete-backward-char 1)
4377 (let ((tabs tab-stop-list))
4378 (while (and tabs (>= (current-column)
4379 (woman-get-tab-stop (car tabs))))
4380 (setq tabs (cdr tabs)))
4381 (if tabs
4382 (let* ((tab (car tabs))
4383 (type (and (consp tab) (cdr tab)))
4384 eol n)
4385 (if type
4386 (setq tab (woman-get-tab-stop tab)
4387 eol (save-excursion (end-of-line) (point))
4388 n (save-excursion
4389 (search-forward "\t" eol t))
4390 n (- (if n (1- n) eol) (point))
4391 tab (- tab (if (eq type ?C) (/ n 2) n))) )
4392 (setq n (- tab (current-column)))
4393 (while (> n 0)
4394 (insert ?\ )
4395 (setq n (1- n))))
4396 (insert ?\ ))))
4397
4398(defun woman2-DT (to)
1edbbf8a
EZ
4399 ".DT -- Restore default tabs. Format paragraphs upto TO.
4400\(Breaks, but should not.)"
077decde
EZ
4401 ;; Currently just terminates special tab processing.
4402 (setq tab-stop-list nil)
4403 (woman-delete-line 1) ; ignore any arguments
4404 (woman2-format-paragraphs to))
4405
4406(defun woman2-fc (to)
1edbbf8a
EZ
4407 ".fc a b -- Set field delimiter a and pad character b.
4408Format paragraphs upto TO.
077decde
EZ
4409A VERY FIRST ATTEMPT to make fields at least readable!
4410Needs doing properly!"
4411 (if (eolp)
4412 (woman-delete-whole-line) ; ignore!
4413 (let ((delim (following-char))
4414 (pad ?\ ) end) ; pad defaults to space
4415 (forward-char)
4416 (skip-chars-forward " \t")
4417 (or (eolp) (setq pad (following-char)))
4418 (woman-delete-whole-line)
4419 (save-excursion
4420 (if (re-search-forward "^[.'][ \t]*fc\\s " nil t)
4421 (setq end (match-beginning 0))))
4422 ;; A field is contained between a pair of field delimiter
4423 ;; characters and consists of sub-strings separated by padding
4424 ;; indicator characters:
4425 (setq delim (string delim ?[ ?^ delim ?] ?* delim))
4426 (save-excursion
4427 (while (re-search-forward delim end t)
4428 (goto-char (match-beginning 0))
4429 (delete-char 1)
4430 (insert woman-unpadded-space-char)
4431 (goto-char (match-end 0))
4432 (delete-backward-char 1)
4433 (insert-before-markers woman-unpadded-space-char)
4434 (subst-char-in-region
4435 (match-beginning 0) (match-end 0)
4436 pad woman-unpadded-space-char t)
4437 ))
4438 ))
4439 (woman2-format-paragraphs to))
4440
4441\f
2d4c3c85
JB
4442;;; Preliminary table support (.TS/.TE)
4443
4444(defun woman2-TS (to)
4445 ".TS -- Start of table code for the tbl processor.
4446Format paragraphs upto TO."
4447 ;; This is a preliminary hack that seems to suffice for lilo.8.
4448 (woman-delete-line 1) ; ignore any arguments
4449 (when woman-emulate-tbl
4450 ;; Assumes column separator is \t and intercolumn spacing is 3.
4451 ;; The first line may optionally be a list of options terminated by
4452 ;; a semicolon. Currently, just delete it:
4453 (if (looking-at ".*;[ \t]*$") (woman-delete-line 1)) ;
4454 ;; The following lines must specify the format of each line of the
4455 ;; table and end with a period. Currently, just delete them:
4456 (while (not (looking-at ".*\\.[ \t]*$")) (woman-delete-line 1))
4457 (woman-delete-line 1)
4458 ;; For each column, find its width and align it:
4459 (let ((start (point)) (col 1))
4460 (while (prog1 (search-forward "\t" to t) (goto-char start))
4461 ;; Find current column width:
4462 (while (< (point) to)
4463 (when (search-forward "\t" to t)
4464 (backward-char)
4465 (if (> (current-column) col) (setq col (current-column))))
4466 (forward-line))
4467 ;; Align current column:
4468 (goto-char start)
4469 (setq col (+ col 3)) ; intercolumn space
4470 (while (< (point) to)
4471 (when (search-forward "\t" to t)
4472 (delete-char -1)
4473 (insert-char ?\ (- col (current-column))))
4474 (forward-line))
4475 (goto-char start))))
4476 ;; Format table with no filling or adjusting (cf. woman2-nf):
4477 (setq woman-nofill t)
4478 (woman2-format-paragraphs to))
4479
4480(defalias 'woman2-TE 'woman2-fi)
4481 ;; ".TE -- End of table code for the tbl processor."
4482 ;; Turn filling and adjusting back on.
4483
4484\f
077decde
EZ
4485;;; WoMan message logging:
4486
1edbbf8a
EZ
4487;; The basis for this logging code was shamelessly pirated from bytecomp.el
4488;; by Jamie Zawinski <jwz@lucid.com> & Hallvard Furuseth <hbf@ulrik.uio.no>
077decde
EZ
4489
4490(defvar WoMan-current-file nil) ; bound in woman-really-find-file
4491(defvar WoMan-Log-header-point-max nil)
4492
4493(defun WoMan-log-begin ()
4494 "Log the beginning of formatting in *WoMan-Log*."
4495 (let ((WoMan-current-buffer (buffer-name)))
4496 (save-excursion
4497 (set-buffer (get-buffer-create "*WoMan-Log*"))
4498 (or (eq major-mode 'view-mode) (view-mode 1))
4499 (setq buffer-read-only nil)
4500 (goto-char (point-max))
4501 (insert "\n\^L\nFormatting "
4502 (if (stringp WoMan-current-file)
4503 (concat "file " WoMan-current-file)
4504 (concat "buffer " WoMan-current-buffer))
4505 " at " (current-time-string) "\n")
4506 (setq WoMan-Log-header-point-max (point-max))
4507 )))
4508
4509(defun WoMan-log (format &rest args)
4510 "Log a message out of FORMAT control string and optional ARGS."
4511 (WoMan-log-1 (apply 'format format args)))
4512
4513(defun WoMan-warn (format &rest args)
4514 "Log a warning message out of FORMAT control string and optional ARGS."
4515 (setq format (apply 'format format args))
4516 (WoMan-log-1 (concat "** " format)))
4517
4518(defun WoMan-warn-ignored (request ignored)
4519 "Log a warning message about ignored directive REQUEST.
4520IGNORED is a string appended to the log message."
4521 (let ((tail
4522 (buffer-substring (point)
4523 (save-excursion (end-of-line) (point)))))
4524 (if (and (> (length tail) 0)
4525 (/= (string-to-char tail) ?\ ))
4526 (setq tail (concat " " tail)))
4527 (WoMan-log-1
4528 (concat "** " request tail " request " ignored))))
4529
4530(defun WoMan-log-end (time)
4531 "Log the end of formatting in *WoMan-Log*.
4532TIME specifies the time it took to format the man page, to be printed
4533with the message."
4534 (WoMan-log-1 (format "Formatting time %d seconds." time) 'end))
4535
4536(defun WoMan-log-1 (string &optional end)
4537 "Log a message STRING in *WoMan-Log*.
1edbbf8a
EZ
4538If optional argument END is non-nil then make buffer read-only after
4539logging the message."
077decde
EZ
4540 (save-excursion
4541 (set-buffer (get-buffer-create "*WoMan-Log*"))
e2a80284 4542 (setq buffer-read-only nil)
077decde
EZ
4543 (goto-char (point-max))
4544 (or end (insert " ")) (insert string "\n")
4545 (if end
4546 (setq buffer-read-only t)
4547 (if woman-show-log
4548 (select-window ; to return to
4549 (prog1 (selected-window) ; WoMan window
4550 (select-window (display-buffer (current-buffer)))
4551 (cond (WoMan-Log-header-point-max
4552 (goto-char WoMan-Log-header-point-max)
4553 (forward-line -1)
4554 (recenter 0)))
4555 )))))
4556 nil) ; for woman-file-readable-p etc.
4557
4558(provide 'woman)
4559
ab5796a9 4560;;; arch-tag: eea35e90-552f-4712-a94b-d9ffd3db7651
077decde 4561;;; woman.el ends here