Mercurial > emacs
annotate lispref/two-volume-cross-refs.txt @ 80099:f68e2df975f5
(diff-beginning-of-file-and-junk): If we're on the
Index: line, don't search backward for the previous one.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 10 Feb 2008 16:36:07 +0000 |
parents | a1e16e813aed |
children |
rev | line source |
---|---|
79750 | 1 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
75767
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
2 Free Software Foundation, Inc. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
3 See end for copying conditions. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
4 |
41193 | 5 Two Volume Cross References |
6 =========================== | |
7 | |
78003
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
8 12 June 2007 (karl) |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
9 |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
10 For lispref 2.9 (for Emacs 22, June 2007), I created a very ugly |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
11 Makefile, in the file two-volume.make, to encapsulate all the steps |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
12 below, without manual intervention. In theory, simply running "make -f |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
13 two-volume.make" should create a vol1.pdf and vol2.pdf with all the |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
14 niceties worked out. |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
15 |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
16 One issue not explicitly discussed below is getting page numbers right. |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
17 It's not enough to go through the whole process. You have to go through |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
18 the whole process twice -- otherwise, some index entries and/or toc |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
19 entries will be off by one. See two-volume.make for a few more comments. |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
20 |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
21 For future editions, it should suffice to update the usual things in |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
22 vol[12].texi (as well as elisp.texi). That was my hope, anyway. |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
23 |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
24 |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
25 18 March 1992 (bob) |
41193 | 26 |
27 This enables you to create manuals in *two* volumes, with tables of | |
28 contents, cross references, and indices in each volume referring to | |
29 *both* volumes. | |
30 | |
31 The procedure is tedious. However, the resulting two volumes are | |
32 conveniently organized. Each has an index of the whole two volumes. | |
33 Each volume starts with page 1. (I don't like multi-volume works | |
34 where each volume starts with a higher page number since I find it | |
35 harder to go to the right place in the volume.) | |
36 | |
37 References to the same volume are just the page number; references to | |
38 the other volume are a volumne number (in Roman numerals) preceding | |
39 the page number. | |
40 | |
41 For example, in Volume I: | |
42 | |
43 list length ......... 90 | |
44 list motion ......II:117 | |
45 | |
46 and in Volume II: | |
47 | |
48 list length ....... I:90 | |
49 list motion .........117 | |
50 | |
51 All other references and the table of contents work the same way. I | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
52 find this *very* helpful. |
41193 | 53 |
54 | |
55 In brief: you run tex on a .texi file with | |
56 | |
57 a. redefined @contents and @summarycontents inputting elisp-toc-2vol.toc file | |
58 b. redone .aux file | |
59 c. redone .fns file | |
60 | |
61 | |
62 Here are the steps in detail: | |
63 | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
64 % tex vol1.texi |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
65 % texindex vol1.?? |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
66 % tex vol1.texi |
41193 | 67 |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
68 % tex vol2.texi |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
69 % texindex vol2.?? |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
70 % tex vol2.texi |
41193 | 71 |
72 ### Create .aux files with volume numbers for other volume. | |
73 | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
74 % cp vol1.aux elisp1-aux |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
75 % cp vol2.aux elisp2-aux |
41193 | 76 |
78003
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
77 % cp vol1.aux elisp1-aux-vol-added |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
78 % cp vol2.aux elisp2-aux-vol-added |
41193 | 79 |
80 on elisp1-aux-vol-number-added | |
78003
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
81 (volume-aux-markup 1) see defun for volume-aux-markup below. |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
82 to create elisp1-aux-vol-added |
41193 | 83 |
84 on elisp2-aux-vol-number-added | |
85 (volume-aux-markup 2) | |
78003
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
86 to create elisp2-aux-vol-added |
41193 | 87 |
78003
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
88 insert elisp2-aux-vol-added into vol1.aux (append) |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
89 insert elisp1-aux-vol-added into vol2.aux (prepend) |
41193 | 90 |
91 (so you dont have to do it again) | |
78003
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
92 % cp vol1.aux elisp1-aux-ready |
1c1d498b5458
update two-volume material for printing
Karl Berry <karl@gnu.org>
parents:
75767
diff
changeset
|
93 % cp vol2.aux elisp2-aux-ready |
41193 | 94 |
95 | |
96 ### Create .fn files with volume numbers for other volume. | |
97 | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
98 % cp vol1.fn elisp1-fn |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
99 % cp vol2.fn elisp2-fn |
41193 | 100 |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
101 % cp vol1.fn elisp1-fn-vol-number-added |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
102 % cp vol2.fn elisp2-fn-vol-number-added |
41193 | 103 |
104 on elisp1-fn-vol-number-added | |
105 (volume-index-markup "I") | |
106 to create elisp1-fn-vol-number-added | |
107 | |
108 on elisp2-fn-vol-number-added | |
109 (volume-index-markup "II") | |
110 to create elisp2-fn-vol-number-added | |
111 | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
112 insert elisp2-fn-vol-number-added into vol1.fn: do following `cat' |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
113 insert elisp1-fn-vol-number-added into vol2.fn: do following `cat' |
41193 | 114 |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
115 % cat elisp2-fn-vol-number-added >> vol1.fn |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
116 % cat elisp1-fn-vol-number-added >> vol2.fn |
41193 | 117 |
118 Be sure to handle special case entries by hand. | |
119 Be sure that .fn file has no blank lines. | |
120 | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
121 % texindex vol1.fn |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
122 % texindex vol2.fn |
41193 | 123 |
124 (so you dont have to do it again) | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
125 % cp vol1.fns elisp1-fns-2vol-ready |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
126 % cp vol2.fns elisp2-fns-2vol-ready |
41193 | 127 |
128 ### Create merged .toc file with volume number headings. | |
129 | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
130 append vol2.toc to vol1.toc with following `cat' |
41193 | 131 |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
132 % cat vol1.toc vol2.toc > elisp-toc-2vol.toc |
41193 | 133 |
134 and edit in Volume titles | |
135 | |
136 \unnumbchapentry {Volume 1}{} | |
137 \unnumbchapentry {}{} | |
138 | |
139 \unnumbchapentry {Index}{295} | |
140 \unnumbchapentry {}{} | |
141 \unnumbchapentry {Volume 2}{} | |
142 \unnumbchapentry {}{} | |
143 | |
144 If you want to put in volume numbers for TOC, then do this: | |
145 Create volume specific .toc files with volume numbers in them. | |
146 | |
147 % cp elisp-toc-2vol.toc elisp1-toc.toc | |
148 % cp elisp-toc-2vol.toc elisp2-toc.toc | |
149 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
150 Use keyboard macro to put I: in first half of elisp1-toc.toc and |
41193 | 151 II: in first half of elisp2-toc.toc |
152 | |
153 Copy the tocs to something you can remember more easily | |
154 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
155 % cp elisp2-toc.toc elisp1-toc-ready.toc |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
156 % cp elisp1-toc.toc elisp2-toc-ready.toc |
41193 | 157 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
158 Then, edit vol1.texi to input elisp1-toc-ready.toc |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
159 and vol2.texi to input elisp2-toc-ready.toc |
41193 | 160 |
161 | |
162 ### Now format the two volumes: | |
163 | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
164 % cp elisp1-aux-2vol-ready vol1.aux |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
165 % cp elisp2-aux-2vol-ready vol2.aux |
41193 | 166 |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
167 % tex vol1.texi |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
168 % tex vol2.texi |
41193 | 169 |
170 | |
171 | |
172 For every additional run: | |
173 | |
174 ### recopy aux files so the correct ones are read: | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
175 % cp elisp1-aux-2vol-ready vol1.aux |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
176 % cp elisp2-aux-2vol-ready vol2.aux |
41193 | 177 |
178 Do not run texindex. Then proper sorted index will stay. | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
179 else do: % cp elisp2-fns-2vol-ready vol2.fns |
41193 | 180 |
181 Do not change the .texi files; they will call the elisp-toc-2vol.toc file. | |
182 | |
41199
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
183 % tex vol1.texi |
bdecbfc5cb92
Replace elisp-vol? with vol?, per renamed files.
Eli Zaretskii <eliz@gnu.org>
parents:
41193
diff
changeset
|
184 % tex vol2.texi |
41193 | 185 |
186 ================================================================ | |
187 | |
188 | |
189 (defun volume-aux-markup (arg) | |
190 "Append `vol. NUMBER' to page number. | |
191 Apply to aux file that you save. | |
192 Then insert marked file into other volume's .aux file." | |
193 (interactive "sType volume number, 1 or 2: " ) | |
194 (goto-char (point-min)) | |
195 (while (search-forward "-pg" nil t) | |
196 (end-of-line 1) | |
197 (delete-backward-char 1 nil) | |
198 (insert ", vol.'tie" arg "}"))) | |
199 | |
200 (defun volume-index-markup (arg) | |
201 "Prepend `NUMBER:' to page number. Use Roman Numeral. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
202 Apply only to unsorted index file, |
41193 | 203 Then insert marked file into other volume's unsorted index file. |
204 Then run texindex on that file and save." | |
205 (interactive | |
206 "sType volume number, roman number I or II: " ) | |
207 (goto-char (point-min)) | |
208 (while (search-forward "\\entry" nil t) | |
209 (search-forward "}{" (save-excursion (end-of-line) (point)) nil) | |
210 (insert arg ":"))) | |
211 | |
212 | |
213 ================================================================ | |
214 | |
215 | |
216 The steps: | |
217 | |
218 1. Run TeX, texindex and TeX on file1. | |
219 2. Run TeX, texindex and TeX on file2. | |
220 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
221 3. Copy both .aux files into specially named files |
41193 | 222 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
223 4. In the case of the elisp ref manual, |
41193 | 224 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
225 copy the *unsorted* function index files into specially named files |
41193 | 226 (no other index used in elisp ref manual) |
227 | |
228 | |
229 5. For aux files: | |
230 | |
231 Run a function on the specially named .aux files to label each | |
232 entry according to volume. Save these files. | |
233 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41199
diff
changeset
|
234 i.e., convert |
41193 | 235 'xrdef {Special-pg}{7} to 'xrdef {Special-pg}{7, vol.'tie1} |
236 | |
237 5a.Insert each specially named .aux file into the regular .aux file of | |
238 the other volume. | |
239 | |
240 6. For index files: | |
241 | |
242 Run a function on the specially named unsorted index files to label | |
243 each entry according to volume. Save these files. | |
244 | |
245 6b.Insert each specially named marked unsorted index file into the | |
246 regular unsorted file of the other volume. Run texindex on this | |
247 | |
248 7. Insert the other volumes .toc file into the .toc, edit, and rename to | |
249 elisp-toc-2vol.toc | |
250 | |
251 7a. insert special @contents and @summarycontents defs into .texi files. | |
252 | |
253 8. Run TeX on each .texi file. | |
254 | |
255 ================ | |
256 | |
257 | |
258 | |
259 Here is the discursive commentary: | |
260 | |
261 I've been running some small test files, called test1.texi and | |
262 test2.texi. As far as I can see, if we run tex on the two test files, | |
263 tex creates a .aux for each that includes the names of all the nodes | |
264 in that file. The node names are used for cross references. | |
265 | |
266 If you insert the .aux file for the second test file, test2.aux, into | |
267 the .aux file for the first test file, test1.aux, then when you next | |
268 run TeX on the first test file, test1.texi, the second volume cross | |
269 references are inserted. | |
270 | |
271 You can edit the text of the cross reference in test2.aux to include | |
272 the volume number. | |
273 | |
274 For example, you can take the following two lines from test1.texi and | |
275 insert them into test2.texi: | |
276 | |
277 'xrdef {Special-pg}{7} | |
278 'xrdef {Special-snt}{Section'tie1.6} | |
279 | |
280 You can re-edit this to show that the page is in volume 1: | |
281 | |
282 'xrdef {Special-pg}{7, vol.'tie1} | |
283 'xrdef {Special-snt}{Section'tie1.6} | |
284 | |
285 (The 'tie is a TeX special command to keep the number tied on one | |
286 line to the previous word. I don't know if it works after a period in | |
287 the "vol." but figure it is worth trying. {The ' is the @ of .aux files.} | |
288 Apparently 'tie is like the tilde in plain tex; in texinfo.tex, the | |
289 definition for 'tie is the following: | |
290 | |
291 \def\tie{\penalty 10000\ } % Save plain tex definition of ~. | |
292 | |
293 ) | |
294 | |
295 After running tex on the test2.texi file with the augmented test2.aux | |
296 file, you can see the following in the resulting DVI file: | |
297 | |
298 See Section 1.6 [Special], page 7, vol. 1 | |
299 | |
300 Note that TeX rewrites the .aux file each time TeX is run, so after | |
301 running Tex using an .aux file augmented with the .aux file from the | |
302 other volume, the new .aux file will *lack* the other volumes cross | |
303 references. Save your augmented .aux file in some other name for | |
304 another run! | |
75767
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
305 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
306 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
307 COPYING CONDITIONS |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
308 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
309 This file is free software; you can redistribute it and/or modify |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
310 it under the terms of the GNU General Public License as published by |
78255
63591152f3cb
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
78003
diff
changeset
|
311 the Free Software Foundation; either version 3, or (at your option) |
75767
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
312 any later version. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
313 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
314 This file is distributed in the hope that it will be useful, |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
315 but WITHOUT ANY WARRANTY; without even the implied warranty of |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
316 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
317 GNU General Public License for more details. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
318 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
319 You should have received a copy of the GNU General Public License |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
320 along with this file; see the file COPYING. If not, write to |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
321 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
322 Boston, MA 02110-1301, USA. |