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