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