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