Mercurial > emacs
annotate lispref/two.el @ 62428:9f49da4a429d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-314
Merge from gnus--rel--5.10
Patches applied:
* gnus--rel--5.10 (patch 69)
- Update from CVS
2005-05-16 Katsumi Yamaoka <yamaoka@jpl.org>
* lisp/gnus/gnus-art.el: Don't autoload mail-extract-address-components.
* lisp/gnus/gnus.el: Use eval-and-compile to autoload message-y-or-n-p.
* lisp/gnus/nndb.el: Don't declare the nndb back end two or more times; don't
autoload news-reply-mode, news-setup, cancel-timer and telnet.
* lisp/gnus/nntp.el: Autoload format-spec instead of format; use
eval-and-compile to evaluate autoload forms.
* lisp/gnus/spam-report.el (spam-report-process-queue): Use gnus-point-at-eol.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Tue, 17 May 2005 04:57:29 +0000 |
parents | 695cf19ef79e |
children | 9f4849fee703 375f2633d815 |
rev | line source |
---|---|
41193 | 1 ;; Auxilary functions for preparing a two volume manual. |
2 ;; --rjc 30mar92 | |
3 | |
4 (defun volume-aux-markup (arg) | |
5 "Append `vol. NUMBER' to page number. | |
6 Apply to aux file that you save. | |
7 Then insert marked file into other volume's .aux file." | |
8 (interactive "sType volume number, 1 or 2: " ) | |
9 (goto-char (point-min)) | |
10 (while (search-forward "-pg" nil t) | |
11 (end-of-line 1) | |
12 (delete-backward-char 1 nil) | |
13 (insert ", vol.'tie" arg "}"))) | |
14 | |
15 (defun volume-index-markup (arg) | |
16 "Prepend `NUMBER:' to page number. Use Roman Numeral. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41193
diff
changeset
|
17 Apply only to unsorted index file, |
41193 | 18 Then insert marked file into other volume's unsorted index file. |
19 Then run texindex on that file and save." | |
20 (interactive | |
21 "sType volume number, roman number I or II: " ) | |
22 (goto-char (point-min)) | |
23 (while (search-forward "\\entry" nil t) | |
24 (search-forward "}{" (save-excursion (end-of-line) (point)) nil) | |
25 (insert arg ":"))) | |
26 | |
27 (defun volume-numbers-toc-markup (arg) | |
28 (interactive | |
29 "sType volume number, roman number I or II: " ) | |
30 (goto-char (point-min)) | |
31 (while (search-forward "chapentry" nil t) | |
32 (end-of-line) | |
33 (search-backward "{" nil t) | |
34 (forward-char 1) | |
35 (insert arg ":"))) | |
36 | |
37 (defun volume-header-toc-markup () | |
38 "Insert Volume I and Volume II text into .toc file. | |
39 NOTE: this auxilary function is file specific. | |
40 This is for the *Elisp Ref Manual*" | |
41 (interactive) | |
42 (goto-char (point-min)) | |
43 (insert "\\unnumbchapentry {Volume 1}{}\n\\unnumbchapentry {}{}\n") | |
44 (search-forward "\\unnumbchapentry {Index}") | |
45 (forward-line 1) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41193
diff
changeset
|
46 (insert |
41193 | 47 "\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {Volume 2}{}\n\\unnumbchapentry {}{}\n")) |
48 | |
49 | |
50 ;;; In batch mode, you cannot call functions with args; hence this kludge: | |
51 | |
52 (defun volume-aux-markup-1 () (volume-aux-markup "1")) | |
53 (defun volume-aux-markup-2 () (volume-aux-markup "2")) | |
54 | |
55 (defun volume-index-markup-I () (volume-index-markup "I")) | |
56 (defun volume-index-markup-II () (volume-index-markup "II")) | |
57 | |
58 (defun volume-numbers-toc-markup-I () (volume-numbers-toc-markup "I")) | |
59 (defun volume-numbers-toc-markup-II () (volume-numbers-toc-markup "II")) | |
52401 | 60 |
61 ;;; arch-tag: 848955fe-e9cf-45e7-a2f1-570ef156d6a5 |