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