OSDN Git Service

Update sparc docs.
[pf3gnuchains/gcc-fork.git] / etc / standards.texi
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename standards.info
4 @settitle GNU Coding Standards
5 @c UPDATE THIS DATE WHENEVER YOU MAKE CHANGES!
6 @set lastupdate 16 January 1997
7 @c %**end of header
8
9 @ifinfo
10 @format
11 START-INFO-DIR-ENTRY
12 * Standards: (standards).        GNU coding standards.
13 END-INFO-DIR-ENTRY
14 @end format
15 @end ifinfo
16
17 @c @setchapternewpage odd
18 @setchapternewpage off
19
20 @c This is used by a cross ref in make-stds.texi
21 @set CODESTD  1
22 @iftex
23 @set CHAPTER chapter
24 @end iftex
25 @ifinfo
26 @set CHAPTER node
27 @end ifinfo
28
29 @ifinfo
30 GNU Coding Standards
31 Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
32
33 Permission is granted to make and distribute verbatim copies of
34 this manual provided the copyright notice and this permission notice
35 are preserved on all copies.
36
37 @ignore
38 Permission is granted to process this file through TeX and print the
39 results, provided the printed document carries copying permission
40 notice identical to this one except for the removal of this paragraph
41 (this paragraph not being relevant to the printed manual).
42 @end ignore
43
44 Permission is granted to copy and distribute modified versions of this
45 manual under the conditions for verbatim copying, provided that the entire
46 resulting derived work is distributed under the terms of a permission
47 notice identical to this one.
48
49 Permission is granted to copy and distribute translations of this manual
50 into another language, under the above conditions for modified versions,
51 except that this permission notice may be stated in a translation approved
52 by the Free Software Foundation.
53 @end ifinfo
54
55 @titlepage
56 @title GNU Coding Standards
57 @author Richard Stallman
58 @author last updated @value{lastupdate}
59 @page
60
61 @vskip 0pt plus 1filll
62 Copyright @copyright{} 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
63
64 Permission is granted to make and distribute verbatim copies of
65 this manual provided the copyright notice and this permission notice
66 are preserved on all copies.
67
68 Permission is granted to copy and distribute modified versions of this
69 manual under the conditions for verbatim copying, provided that the entire
70 resulting derived work is distributed under the terms of a permission
71 notice identical to this one.
72
73 Permission is granted to copy and distribute translations of this manual
74 into another language, under the above conditions for modified versions,
75 except that this permission notice may be stated in a translation approved
76 by the Free Software Foundation.
77 @end titlepage
78
79 @ifinfo
80 @node Top, Preface, (dir), (dir)
81 @top Version
82
83 Last updated @value{lastupdate}.
84 @end ifinfo
85
86 @menu
87 * Preface::                     About the GNU Coding Standards
88 * Intellectual Property::       Keeping Free Software Free
89 * Design Advice::               General Program Design
90 * Program Behavior::            Program Behavior for All Programs
91 * Writing C::                   Making The Best Use of C
92 * Documentation::               Documenting Programs
93 * Managing Releases::           The Release Process
94 @end menu
95
96 @node Preface
97 @chapter About the GNU Coding Standards
98
99 The GNU Coding Standards were written by Richard Stallman and other GNU
100 Project volunteers.  Their purpose is to make the GNU system clean,
101 consistent, and easy to install.  This document can also be read as a
102 guide to writing portable, robust and reliable programs.  It focuses on
103 programs written in C, but many of the rules and principles are useful
104 even if you write in another programming language.  The rules often
105 state reasons for writing in a certain way.
106
107 Corrections or suggestions regarding this document should be sent to
108 @code{gnu@@prep.ai.mit.edu}.  If you make a suggestion, please include a
109 suggested new wording for it; our time is limited.  We prefer a context
110 diff to the @file{standards.texi} or @file{make-stds.texi} files, but if
111 you don't have those files, please mail your suggestion anyway.
112
113 This release of the GNU Coding Standards was last updated
114 @value{lastupdate}.
115
116 @node Intellectual Property
117 @chapter Keeping Free Software Free
118
119 This @value{CHAPTER} discusses how you can make sure that GNU software
120 remains unencumbered.
121
122 @menu
123 * Reading Non-Free Code::       Referring to Proprietary Programs
124 * Contributions::               Accepting Contributions
125 @end menu
126
127 @node Reading Non-Free Code
128 @section Referring to Proprietary Programs
129
130 Don't in any circumstances refer to Unix source code for or during
131 your work on GNU!  (Or to any other proprietary programs.)
132
133 If you have a vague recollection of the internals of a Unix program,
134 this does not absolutely mean you can't write an imitation of it, but
135 do try to organize the imitation internally along different lines,
136 because this is likely to make the details of the Unix version
137 irrelevant and dissimilar to your results.
138
139 For example, Unix utilities were generally optimized to minimize
140 memory use; if you go for speed instead, your program will be very
141 different.  You could keep the entire input file in core and scan it
142 there instead of using stdio.  Use a smarter algorithm discovered more
143 recently than the Unix program.  Eliminate use of temporary files.  Do
144 it in one pass instead of two (we did this in the assembler).
145
146 Or, on the contrary, emphasize simplicity instead of speed.  For some
147 applications, the speed of today's computers makes simpler algorithms
148 adequate.
149
150 Or go for generality.  For example, Unix programs often have static
151 tables or fixed-size strings, which make for arbitrary limits; use
152 dynamic allocation instead.  Make sure your program handles NULs and
153 other funny characters in the input files.  Add a programming language
154 for extensibility and write part of the program in that language.
155
156 Or turn some parts of the program into independently usable libraries.
157 Or use a simple garbage collector instead of tracking precisely when
158 to free memory, or use a new GNU facility such as obstacks.
159
160
161 @node Contributions
162 @section Accepting Contributions
163
164 If someone else sends you a piece of code to add to the program you are
165 working on, we need legal papers to use it---the same sort of legal
166 papers we will need to get from you.  @emph{Each} significant
167 contributor to a program must sign some sort of legal papers in order
168 for us to have clear title to the program.  The main author alone is not
169 enough.
170
171 So, before adding in any contributions from other people, tell us
172 so we can arrange to get the papers.  Then wait until we tell you
173 that we have received the signed papers, before you actually use the
174 contribution.
175
176 This applies both before you release the program and afterward.  If
177 you receive diffs to fix a bug, and they make significant changes, we
178 need legal papers for it.
179
180 You don't need papers for changes of a few lines here or there, since
181 they are not significant for copyright purposes.  Also, you don't need
182 papers if all you get from the suggestion is some ideas, not actual code
183 which you use.  For example, if you write a different solution to the
184 problem, you don't need to get papers.
185
186 We know this is frustrating; it's frustrating for us as well.  But if
187 you don't wait, you are going out on a limb---for example, what if the
188 contributor's employer won't sign a disclaimer?  You might have to take
189 that code out again!
190
191 The very worst thing is if you forget to tell us about the other
192 contributor.  We could be very embarrassed in court some day as a
193 result.
194
195 @node Design Advice
196 @chapter General Program Design
197
198 This @value{CHAPTER} discusses some of the issues you should take into
199 account when designing your program.
200
201 @menu
202 * Compatibility::               Compatibility with other implementations
203 * Using Extensions::            Using non-standard features
204 * ANSI C::                      Using ANSI C features
205 * Source Language::             Using languages other than C
206 @end menu
207
208 @node Compatibility
209 @section Compatibility with Other Implementations
210
211 With occasional exceptions, utility programs and libraries for GNU
212 should be upward compatible with those in Berkeley Unix, and upward
213 compatible with @sc{ansi} C if @sc{ansi} C specifies their behavior, and
214 upward compatible with @sc{POSIX} if @sc{POSIX} specifies their
215 behavior.
216
217 When these standards conflict, it is useful to offer compatibility
218 modes for each of them.
219
220 @sc{ansi} C and @sc{POSIX} prohibit many kinds of extensions.  Feel free
221 to make the extensions anyway, and include a @samp{--ansi},
222 @samp{--posix}, or @samp{--compatible} option to turn them off.
223 However, if the extension has a significant chance of breaking any real
224 programs or scripts, then it is not really upward compatible.  Try to
225 redesign its interface.
226
227 Many GNU programs suppress extensions that conflict with POSIX if the
228 environment variable @code{POSIXLY_CORRECT} is defined (even if it is
229 defined with a null value).  Please make your program recognize this
230 variable if appropriate.
231
232 When a feature is used only by users (not by programs or command
233 files), and it is done poorly in Unix, feel free to replace it
234 completely with something totally different and better.  (For example,
235 @code{vi} is replaced with Emacs.)  But it is nice to offer a compatible
236 feature as well.  (There is a free @code{vi} clone, so we offer it.)
237
238 Additional useful features not in Berkeley Unix are welcome.
239 Additional programs with no counterpart in Unix may be useful,
240 but our first priority is usually to duplicate what Unix already
241 has.
242
243 @node Using Extensions
244 @section Using Non-standard Features
245
246 Many GNU facilities that already exist support a number of convenient
247 extensions over the comparable Unix facilities.  Whether to use these
248 extensions in implementing your program is a difficult question.
249
250 On the one hand, using the extensions can make a cleaner program.
251 On the other hand, people will not be able to build the program
252 unless the other GNU tools are available.  This might cause the
253 program to work on fewer kinds of machines.
254
255 With some extensions, it might be easy to provide both alternatives.
256 For example, you can define functions with a ``keyword'' @code{INLINE}
257 and define that as a macro to expand into either @code{inline} or
258 nothing, depending on the compiler.
259
260 In general, perhaps it is best not to use the extensions if you can
261 straightforwardly do without them, but to use the extensions if they
262 are a big improvement.
263
264 An exception to this rule are the large, established programs (such as
265 Emacs) which run on a great variety of systems.  Such programs would
266 be broken by use of GNU extensions.
267
268 Another exception is for programs that are used as part of
269 compilation: anything that must be compiled with other compilers in
270 order to bootstrap the GNU compilation facilities.  If these require
271 the GNU compiler, then no one can compile them without having them
272 installed already.  That would be no good.
273
274 @node ANSI C
275 @section @sc{ansi} C and pre-@sc{ansi} C
276
277 Do not ever use the ``trigraph'' feature of @sc{ansi} C.
278
279 @sc{ansi} C is widespread enough now that it is ok to write new programs
280 that use @sc{ansi} C features (and therefore will not work in
281 non-@sc{ansi} compilers).  And if a program is already written in
282 @sc{ansi} C, there's no need to convert it to support non-@sc{ansi}
283 compilers.
284
285 However, it is easy to support non-@sc{ansi} compilers in most programs,
286 so you might still consider doing so when you write a program.  Instead
287 of writing function definitions in @sc{ansi} prototype form,
288
289 @example
290 int
291 foo (int x, int y)
292 @dots{}
293 @end example
294
295 @noindent
296 write the definition in pre-@sc{ansi} style like this,
297
298 @example
299 int
300 foo (x, y)
301      int x, y;
302 @dots{}
303 @end example
304
305 @noindent
306 and use a separate declaration to specify the argument prototype:
307
308 @example
309 int foo (int, int);
310 @end example
311
312 You need such a declaration anyway, in a header file, to get the benefit
313 of @sc{ansi} C prototypes in all the files where the function is called.
314 And once you have it, you lose nothing by writing the function
315 definition in the pre-@sc{ansi} style.
316
317 If you don't know non-@sc{ansi} C, there's no need to learn it; just
318 write in @sc{ansi} C.
319
320 @node Source Language
321 @section Using Languages Other Than C
322
323 Using a language other than C is like using a non-standard feature: it
324 will cause trouble for users.  Even if GCC supports the other language,
325 users may find it inconvenient to have to install the compiler for that
326 other language in order to build your program.  So please write in C.
327
328 There are three exceptions for this rule:
329
330 @itemize @bullet
331 @item
332 It is okay to use a special language if the same program contains an
333 interpreter for that language.
334
335 For example, if your program links with GUILE, it is ok to write part of
336 the program in Scheme or another language supported by GUILE.
337
338 @item
339 It is okay to use another language in a tool specifically intended for
340 use with that language.
341
342 This is okay because the only people who want to build the tool will be
343 those who have installed the other language anyway.
344
345 @item
346 If an application is not of extremely widespread interest, then perhaps
347 it's not important if the application is inconvenient to install.
348 @end itemize
349
350 @node Program Behavior
351 @chapter Program Behavior for All Programs
352
353 This @value{CHAPTER} describes how to write robust software. It also
354 describes general standards for error messages, the command line interface,
355 and how libraries should behave.
356
357 @menu
358 * Semantics::                   Writing robust programs
359 * Libraries::                   Library behavior
360 * Errors::                      Formatting error messages
361 * User Interfaces::             Standards for command line interfaces
362 * Option Table::                Table of long options.
363 * Memory Usage::                When and how to care about memory needs
364 @end menu
365
366 @node Semantics
367 @section Writing Robust Programs
368
369 Avoid arbitrary limits on the length or number of @emph{any} data
370 structure, including file names, lines, files, and symbols, by allocating
371 all data structures dynamically.  In most Unix utilities, ``long lines
372 are silently truncated''.  This is not acceptable in a GNU utility.
373
374 Utilities reading files should not drop NUL characters, or any other
375 nonprinting characters @emph{including those with codes above 0177}.  The
376 only sensible exceptions would be utilities specifically intended for
377 interface to certain types of printers that can't handle those characters.
378
379 Check every system call for an error return, unless you know you wish to
380 ignore errors.  Include the system error text (from @code{perror} or
381 equivalent) in @emph{every} error message resulting from a failing
382 system call, as well as the name of the file if any and the name of the
383 utility.  Just ``cannot open foo.c'' or ``stat failed'' is not
384 sufficient.
385
386 Check every call to @code{malloc} or @code{realloc} to see if it
387 returned zero.  Check @code{realloc} even if you are making the block
388 smaller; in a system that rounds block sizes to a power of 2,
389 @code{realloc} may get a different block if you ask for less space.
390
391 In Unix, @code{realloc} can destroy the storage block if it returns
392 zero.  GNU @code{realloc} does not have this bug: if it fails, the
393 original block is unchanged.  Feel free to assume the bug is fixed.  If
394 you wish to run your program on Unix, and wish to avoid lossage in this
395 case, you can use the GNU @code{malloc}.
396
397 You must expect @code{free} to alter the contents of the block that was
398 freed.  Anything you want to fetch from the block, you must fetch before
399 calling @code{free}.
400
401 If @code{malloc} fails in a noninteractive program, make that a fatal
402 error.  In an interactive program (one that reads commands from the
403 user), it is better to abort the command and return to the command
404 reader loop.  This allows the user to kill other processes to free up
405 virtual memory, and then try the command again.
406
407 Use @code{getopt_long} to decode arguments, unless the argument syntax
408 makes this unreasonable.
409
410 When static storage is to be written in during program execution, use
411 explicit C code to initialize it.  Reserve C initialized declarations
412 for data that will not be changed.
413 @c ADR: why?
414
415 Try to avoid low-level interfaces to obscure Unix data structures (such
416 as file directories, utmp, or the layout of kernel memory), since these
417 are less likely to work compatibly.  If you need to find all the files
418 in a directory, use @code{readdir} or some other high-level interface.
419 These will be supported compatibly by GNU.
420
421 By default, the GNU system will provide the signal handling functions of
422 @sc{BSD} and of @sc{POSIX}.  So GNU software should be written to use
423 these.
424
425 In error checks that detect ``impossible'' conditions, just abort.
426 There is usually no point in printing any message.  These checks
427 indicate the existence of bugs.  Whoever wants to fix the bugs will have
428 to read the source code and run a debugger.  So explain the problem with
429 comments in the source.  The relevant data will be in variables, which
430 are easy to examine with the debugger, so there is no point moving them
431 elsewhere.
432
433 Do not use a count of errors as the exit status for a program.
434 @emph{That does not work}, because exit status values are limited to 8
435 bits (0 through 255).  A single run of the program might have 256
436 errors; if you try to return 256 as the exit status, the parent process
437 will see 0 as the status, and it will appear that the program succeeded.
438
439 If you make temporary files, check the @code{TMPDIR} environment
440 variable; if that variable is defined, use the specified directory
441 instead of @file{/tmp}.
442
443 @node Libraries
444 @section Library Behavior
445
446 Try to make library functions reentrant.  If they need to do dynamic
447 storage allocation, at least try to avoid any nonreentrancy aside from
448 that of @code{malloc} itself.
449
450 Here are certain name conventions for libraries, to avoid name
451 conflicts.
452
453 Choose a name prefix for the library, more than two characters long.
454 All external function and variable names should start with this
455 prefix.  In addition, there should only be one of these in any given
456 library member.  This usually means putting each one in a separate
457 source file.
458
459 An exception can be made when two external symbols are always used
460 together, so that no reasonable program could use one without the
461 other; then they can both go in the same file.
462
463 External symbols that are not documented entry points for the user
464 should have names beginning with @samp{_}.  They should also contain
465 the chosen name prefix for the library, to prevent collisions with
466 other libraries.  These can go in the same files with user entry
467 points if you like.
468
469 Static functions and variables can be used as you like and need not
470 fit any naming convention.
471
472 @node Errors
473 @section Formatting Error Messages
474
475 Error messages from compilers should look like this:
476
477 @example
478 @var{source-file-name}:@var{lineno}: @var{message}
479 @end example
480
481 Error messages from other noninteractive programs should look like this:
482
483 @example
484 @var{program}:@var{source-file-name}:@var{lineno}: @var{message}
485 @end example
486
487 @noindent
488 when there is an appropriate source file, or like this:
489
490 @example
491 @var{program}: @var{message}
492 @end example
493
494 @noindent
495 when there is no relevant source file.
496
497 In an interactive program (one that is reading commands from a
498 terminal), it is better not to include the program name in an error
499 message.  The place to indicate which program is running is in the
500 prompt or with the screen layout.  (When the same program runs with
501 input from a source other than a terminal, it is not interactive and
502 would do best to print error messages using the noninteractive style.)
503
504 The string @var{message} should not begin with a capital letter when
505 it follows a program name and/or file name.  Also, it should not end
506 with a period.
507
508 Error messages from interactive programs, and other messages such as
509 usage messages, should start with a capital letter.  But they should not
510 end with a period.
511
512 @node User Interfaces
513 @section Standards for Command Line Interfaces
514
515 Please don't make the behavior of a utility depend on the name used
516 to invoke it.  It is useful sometimes to make a link to a utility
517 with a different name, and that should not change what it does.
518
519 Instead, use a run time option or a compilation switch or both
520 to select among the alternate behaviors.
521
522 Likewise, please don't make the behavior of the program depend on the
523 type of output device it is used with.  Device independence is an
524 important principle of the system's design; do not compromise it
525 merely to save someone from typing an option now and then.
526
527 If you think one behavior is most useful when the output is to a
528 terminal, and another is most useful when the output is a file or a
529 pipe, then it is usually best to make the default behavior the one that
530 is useful with output to a terminal, and have an option for the other
531 behavior.
532
533 Compatibility requires certain programs to depend on the type of output
534 device.  It would be disastrous if @code{ls} or @code{sh} did not do so
535 in the way all users expect.  In some of these cases, we supplement the
536 program with a preferred alternate version that does not depend on the
537 output device type.  For example, we provide a @code{dir} program much
538 like @code{ls} except that its default output format is always
539 multi-column format.
540
541 It is a good idea to follow the @sc{POSIX} guidelines for the
542 command-line options of a program.  The easiest way to do this is to use
543 @code{getopt} to parse them.  Note that the GNU version of @code{getopt}
544 will normally permit options anywhere among the arguments unless the
545 special argument @samp{--} is used.  This is not what @sc{POSIX}
546 specifies; it is a GNU extension.
547
548 Please define long-named options that are equivalent to the
549 single-letter Unix-style options.  We hope to make GNU more user
550 friendly this way.  This is easy to do with the GNU function
551 @code{getopt_long}.
552
553 One of the advantages of long-named options is that they can be
554 consistent from program to program.  For example, users should be able
555 to expect the ``verbose'' option of any GNU program which has one, to be
556 spelled precisely @samp{--verbose}.  To achieve this uniformity, look at
557 the table of common long-option names when you choose the option names
558 for your program (@pxref{Option Table}).
559
560 It is usually a good idea for file names given as ordinary arguments to
561 be input files only; any output files would be specified using options
562 (preferably @samp{-o} or @samp{--output}).  Even if you allow an output
563 file name as an ordinary argument for compatibility, try to provide an
564 option as another way to specify it.  This will lead to more consistency
565 among GNU utilities, and fewer idiosyncracies for users to remember.
566
567 All programs should support two standard options: @samp{--version}
568 and @samp{--help}.
569
570 @table @code
571 @item --version
572 This option should direct the program to information about its name,
573 version, origin and legal status, all on standard output, and then exit
574 successfully.  Other options and arguments should be ignored once this
575 is seen, and the program should not perform its normal function.
576
577 The first line is meant to be easy for a program to parse; the version
578 number proper starts after the last space.  In addition, it contains
579 the canonical name for this program, in this format:
580
581 @example
582 GNU Emacs 19.30
583 @end example
584
585 @noindent
586 The program's name should be a constant string; @emph{don't} compute it
587 from @code{argv[0]}.  The idea is to state the standard or canonical
588 name for the program, not its file name.  There are other ways to find
589 out the precise file name where a command is found in @code{PATH}.
590
591 If the program is a subsidiary part of a larger package, mention the
592 package name in parentheses, like this:
593
594 @example
595 emacsserver (GNU Emacs) 19.30
596 @end example
597
598 @noindent
599 If the package has a version number which is different from this
600 program's version number, you can mention the package version number
601 just before the close-parenthesis.
602
603 If you @strong{need} to mention the version numbers of libraries which
604 are distributed separately from the package which contains this program,
605 you can do so by printing an additional line of version info for each
606 library you want to mention.  Use the same format for these lines as for
607 the first line.
608
609 Please don't mention all the libraries that the program uses ``just for
610 completeness''---that would produce a lot of unhelpful clutter.  Please
611 mention library version numbers only if you find in practice that they
612 are very important to you in debugging.
613
614 The following line, after the version number line or lines, should be a
615 copyright notice.  If more than one copyright notice is called for, put
616 each on a separate line.
617
618 Next should follow a brief statement that the program is free software,
619 and that users are free to copy and change it on certain conditions.  If
620 the program is covered by the GNU GPL, say so here.  Also mention that
621 there is no warranty, to the extent permitted by law.
622
623 It is ok to finish the output with a list of the major authors of the
624 program, as a way of giving credit.
625
626 Here's an example of output that follows these rules:
627
628 @smallexample
629 GNU Emacs 19.34.5
630 Copyright (C) 1996 Free Software Foundation, Inc.
631 GNU Emacs comes with NO WARRANTY, to the extent permitted by law.
632 You may redistribute copies of GNU Emacs
633 under the terms of the GNU General Public License.
634 For more information about these matters, see the files named COPYING.
635 @end smallexample
636
637 You should adapt this to your program, of course, filling in the proper
638 year, copyright holder, name of program, and the references to
639 distribution terms, and changing the rest of the wording as necessary.
640
641 This copyright notice only needs to mention the most recent year in
642 which changes were made---there's no need to list the years for previous
643 versions' changes.  You don't have to mention the name of the program in
644 these notices, if that is inconvenient, since it appeared in the first
645 line.
646
647 @item --help
648 This option should output brief documentation for how to invoke the
649 program, on standard output, then exit successfully.  Other options and
650 arguments should be ignored once this is seen, and the program should
651 not perform its normal function.
652
653 Near the end of the @samp{--help} option's output there should be a line
654 that says where to mail bug reports.  It should have this format:
655
656 @example
657 Report bugs to @var{mailing-address}.
658 @end example
659 @end table
660
661 @node Option Table
662 @section Table of Long Options
663
664 Here is a table of long options used by GNU programs.  It is surely
665 incomplete, but we aim to list all the options that a new program might
666 want to be compatible with.  If you use names not already in the table,
667 please send @samp{gnu@@prep.ai.mit.edu} a list of them, with their
668 meanings, so we can update the table.
669
670 @c Please leave newlines between items in this table; it's much easier
671 @c to update when it isn't completely squashed together and unreadable.
672 @c When there is more than one short option for a long option name, put
673 @c a semicolon between the lists of the programs that use them, not a
674 @c period.   --friedman
675
676 @table @samp
677 @item after-date
678 @samp{-N} in @code{tar}.
679
680 @item all
681 @samp{-a} in @code{du}, @code{ls}, @code{nm}, @code{stty}, @code{uname},
682 and @code{unexpand}.
683
684 @item all-text
685 @samp{-a} in @code{diff}.
686
687 @item almost-all
688 @samp{-A} in @code{ls}.
689
690 @item append
691 @samp{-a} in @code{etags}, @code{tee}, @code{time};
692 @samp{-r} in @code{tar}.
693
694 @item archive
695 @samp{-a} in @code{cp}.
696
697 @item archive-name
698 @samp{-n} in @code{shar}.
699
700 @item arglength
701 @samp{-l} in @code{m4}.
702
703 @item ascii
704 @samp{-a} in @code{diff}.
705
706 @item assign
707 @samp{-v} in @code{gawk}.
708
709 @item assume-new
710 @samp{-W} in Make.
711
712 @item assume-old
713 @samp{-o} in Make.
714
715 @item auto-check
716 @samp{-a} in @code{recode}.
717
718 @item auto-pager
719 @samp{-a} in @code{wdiff}.
720
721 @item auto-reference
722 @samp{-A} in @code{ptx}.
723
724 @item avoid-wraps
725 @samp{-n} in @code{wdiff}.
726
727 @item backward-search
728 @samp{-B} in @code{ctags}.
729
730 @item basename
731 @samp{-f} in @code{shar}.
732
733 @item batch
734 Used in GDB.
735
736 @item baud
737 Used in GDB.
738
739 @item before
740 @samp{-b} in @code{tac}.
741
742 @item binary
743 @samp{-b} in @code{cpio} and @code{diff}.
744
745 @item bits-per-code
746 @samp{-b} in @code{shar}.
747
748 @item block-size
749 Used in @code{cpio} and @code{tar}.
750
751 @item blocks
752 @samp{-b} in @code{head} and @code{tail}.
753
754 @item break-file
755 @samp{-b} in @code{ptx}.
756
757 @item brief
758 Used in various programs to make output shorter.
759
760 @item bytes
761 @samp{-c} in @code{head}, @code{split}, and @code{tail}.
762
763 @item c@t{++}
764 @samp{-C} in @code{etags}.
765
766 @item catenate
767 @samp{-A} in @code{tar}.
768
769 @item cd
770 Used in various programs to specify the directory to use.
771
772 @item changes
773 @samp{-c} in @code{chgrp} and @code{chown}.
774
775 @item classify
776 @samp{-F} in @code{ls}.
777
778 @item colons
779 @samp{-c} in @code{recode}.
780
781 @item command
782 @samp{-c} in @code{su};
783 @samp{-x} in GDB.
784
785 @item compare
786 @samp{-d} in @code{tar}.
787
788 @item compat
789 Used in @code{gawk}.
790
791 @item compress
792 @samp{-Z} in @code{tar} and @code{shar}.
793
794 @item concatenate
795 @samp{-A} in @code{tar}.
796
797 @item confirmation
798 @samp{-w} in @code{tar}.
799
800 @item context
801 Used in @code{diff}.
802
803 @item copyleft
804 @samp{-W copyleft} in @code{gawk}.
805
806 @item copyright
807 @samp{-C} in @code{ptx}, @code{recode}, and @code{wdiff};
808 @samp{-W copyright} in @code{gawk}.
809
810 @item core
811 Used in GDB.
812
813 @item count
814 @samp{-q} in @code{who}.
815
816 @item count-links
817 @samp{-l} in @code{du}.
818
819 @item create
820 Used in @code{tar} and @code{cpio}.
821
822 @item cut-mark
823 @samp{-c} in @code{shar}.
824
825 @item cxref
826 @samp{-x} in @code{ctags}.
827
828 @item date
829 @samp{-d} in @code{touch}.
830
831 @item debug
832 @samp{-d} in Make and @code{m4};
833 @samp{-t} in Bison.
834
835 @item define
836 @samp{-D} in @code{m4}.
837
838 @item defines
839 @samp{-d} in Bison and @code{ctags}.
840
841 @item delete
842 @samp{-D} in @code{tar}.
843
844 @item dereference
845 @samp{-L} in @code{chgrp}, @code{chown}, @code{cpio}, @code{du},
846 @code{ls}, and @code{tar}.
847
848 @item dereference-args
849 @samp{-D} in @code{du}.
850
851 @item diacritics
852 @samp{-d} in @code{recode}.
853
854 @item dictionary-order
855 @samp{-d} in @code{look}.
856
857 @item diff
858 @samp{-d} in @code{tar}.
859
860 @item digits
861 @samp{-n} in @code{csplit}.
862
863 @item directory
864 Specify the directory to use, in various programs.  In @code{ls}, it
865 means to show directories themselves rather than their contents.  In
866 @code{rm} and @code{ln}, it means to not treat links to directories
867 specially.
868
869 @item discard-all
870 @samp{-x} in @code{strip}.
871
872 @item discard-locals
873 @samp{-X} in @code{strip}.
874
875 @item dry-run
876 @samp{-n} in Make.
877
878 @item ed
879 @samp{-e} in @code{diff}.
880
881 @item elide-empty-files
882 @samp{-z} in @code{csplit}.
883
884 @item end-delete
885 @samp{-x} in @code{wdiff}.
886
887 @item end-insert
888 @samp{-z} in @code{wdiff}.
889
890 @item entire-new-file
891 @samp{-N} in @code{diff}.
892
893 @item environment-overrides
894 @samp{-e} in Make.
895
896 @item eof
897 @samp{-e} in @code{xargs}.
898
899 @item epoch
900 Used in GDB.
901
902 @item error-limit
903 Used in @code{makeinfo}.
904
905 @item error-output
906 @samp{-o} in @code{m4}.
907
908 @item escape
909 @samp{-b} in @code{ls}.
910
911 @item exclude-from
912 @samp{-X} in @code{tar}.
913
914 @item exec
915 Used in GDB.
916
917 @item exit
918 @samp{-x} in @code{xargs}.
919
920 @item exit-0
921 @samp{-e} in @code{unshar}.
922
923 @item expand-tabs
924 @samp{-t} in @code{diff}.
925
926 @item expression
927 @samp{-e} in @code{sed}.
928
929 @item extern-only
930 @samp{-g} in @code{nm}.
931
932 @item extract
933 @samp{-i} in @code{cpio};
934 @samp{-x} in @code{tar}.
935
936 @item faces
937 @samp{-f} in @code{finger}.
938
939 @item fast
940 @samp{-f} in @code{su}.
941
942 @item fatal-warnings
943 @samp{-E} in @code{m4}.
944
945 @item file
946 @samp{-f} in @code{info}, @code{gawk}, Make, @code{mt}, and @code{tar};
947 @samp{-n} in @code{sed};
948 @samp{-r} in @code{touch}.
949
950 @item field-separator
951 @samp{-F} in @code{gawk}.
952
953 @item file-prefix
954 @samp{-b} in Bison.
955
956 @item file-type
957 @samp{-F} in @code{ls}.
958
959 @item files-from
960 @samp{-T} in @code{tar}.
961
962 @item fill-column
963 Used in @code{makeinfo}.
964
965 @item flag-truncation
966 @samp{-F} in @code{ptx}.
967
968 @item fixed-output-files
969 @samp{-y} in Bison.
970
971 @item follow
972 @samp{-f} in @code{tail}.
973
974 @item footnote-style
975 Used in @code{makeinfo}.
976
977 @item force
978 @samp{-f} in @code{cp}, @code{ln}, @code{mv}, and @code{rm}.
979
980 @item force-prefix
981 @samp{-F} in @code{shar}.
982
983 @item format
984 Used in @code{ls}, @code{time}, and @code{ptx}.
985
986 @item freeze-state
987 @samp{-F} in @code{m4}.
988
989 @item fullname
990 Used in GDB.
991
992 @item gap-size
993 @samp{-g} in @code{ptx}.
994
995 @item get
996 @samp{-x} in @code{tar}.
997
998 @item graphic
999 @samp{-i} in @code{ul}.
1000
1001 @item graphics
1002 @samp{-g} in @code{recode}.
1003
1004 @item group
1005 @samp{-g} in @code{install}.
1006
1007 @item gzip
1008 @samp{-z} in @code{tar} and @code{shar}.
1009
1010 @item hashsize
1011 @samp{-H} in @code{m4}.
1012
1013 @item header
1014 @samp{-h} in @code{objdump} and @code{recode}
1015
1016 @item heading
1017 @samp{-H} in @code{who}.
1018
1019 @item help
1020 Used to ask for brief usage information.
1021
1022 @item here-delimiter
1023 @samp{-d} in @code{shar}.
1024
1025 @item hide-control-chars
1026 @samp{-q} in @code{ls}.
1027
1028 @item idle
1029 @samp{-u} in @code{who}.
1030
1031 @item ifdef
1032 @samp{-D} in @code{diff}.
1033
1034 @item ignore
1035 @samp{-I} in @code{ls};
1036 @samp{-x} in @code{recode}.
1037
1038 @item ignore-all-space
1039 @samp{-w} in @code{diff}.
1040
1041 @item ignore-backups
1042 @samp{-B} in @code{ls}.
1043
1044 @item ignore-blank-lines
1045 @samp{-B} in @code{diff}.
1046
1047 @item ignore-case
1048 @samp{-f} in @code{look} and @code{ptx};
1049 @samp{-i} in @code{diff} and @code{wdiff}.
1050
1051 @item ignore-errors
1052 @samp{-i} in Make.
1053
1054 @item ignore-file
1055 @samp{-i} in @code{ptx}.
1056
1057 @item ignore-indentation
1058 @samp{-I} in @code{etags}.
1059
1060 @item ignore-init-file
1061 @samp{-f} in Oleo.
1062
1063 @item ignore-interrupts
1064 @samp{-i} in @code{tee}.
1065
1066 @item ignore-matching-lines
1067 @samp{-I} in @code{diff}.
1068
1069 @item ignore-space-change
1070 @samp{-b} in @code{diff}.
1071
1072 @item ignore-zeros
1073 @samp{-i} in @code{tar}.
1074
1075 @item include
1076 @samp{-i} in @code{etags};
1077 @samp{-I} in @code{m4}.
1078
1079 @item include-dir
1080 @samp{-I} in Make.
1081
1082 @item incremental
1083 @samp{-G} in @code{tar}.
1084
1085 @item info
1086 @samp{-i}, @samp{-l}, and @samp{-m} in Finger.
1087
1088 @item initial
1089 @samp{-i} in @code{expand}.
1090
1091 @item initial-tab
1092 @samp{-T} in @code{diff}.
1093
1094 @item inode
1095 @samp{-i} in @code{ls}.
1096
1097 @item interactive
1098 @samp{-i} in @code{cp}, @code{ln}, @code{mv}, @code{rm};
1099 @samp{-e} in @code{m4};
1100 @samp{-p} in @code{xargs};
1101 @samp{-w} in @code{tar}.
1102
1103 @item intermix-type
1104 @samp{-p} in @code{shar}.
1105
1106 @item jobs
1107 @samp{-j} in Make.
1108
1109 @item just-print
1110 @samp{-n} in Make.
1111
1112 @item keep-going
1113 @samp{-k} in Make.
1114
1115 @item keep-files
1116 @samp{-k} in @code{csplit}.
1117
1118 @item kilobytes
1119 @samp{-k} in @code{du} and @code{ls}.
1120
1121 @item language
1122 @samp{-l} in @code{etags}.
1123
1124 @item less-mode
1125 @samp{-l} in @code{wdiff}.
1126
1127 @item level-for-gzip
1128 @samp{-g} in @code{shar}.
1129
1130 @item line-bytes
1131 @samp{-C} in @code{split}.
1132
1133 @item lines
1134 Used in @code{split}, @code{head}, and @code{tail}.
1135
1136 @item link
1137 @samp{-l} in @code{cpio}.
1138
1139 @item lint
1140 @itemx lint-old
1141 Used in @code{gawk}.
1142
1143 @item list
1144 @samp{-t} in @code{cpio};
1145 @samp{-l} in @code{recode}.
1146
1147 @item list
1148 @samp{-t} in @code{tar}.
1149
1150 @item literal
1151 @samp{-N} in @code{ls}.
1152
1153 @item load-average
1154 @samp{-l} in Make.
1155
1156 @item login
1157 Used in @code{su}.
1158
1159 @item machine
1160 No listing of which programs already use this;
1161 someone should check to
1162 see if any actually do and tell @code{gnu@@prep.ai.mit.edu}.
1163
1164 @item macro-name
1165 @samp{-M} in @code{ptx}.
1166
1167 @item mail
1168 @samp{-m} in @code{hello} and @code{uname}.
1169
1170 @item make-directories
1171 @samp{-d} in @code{cpio}.
1172
1173 @item makefile
1174 @samp{-f} in Make.
1175
1176 @item mapped
1177 Used in GDB.
1178
1179 @item max-args
1180 @samp{-n} in @code{xargs}.
1181
1182 @item max-chars
1183 @samp{-n} in @code{xargs}.
1184
1185 @item max-lines
1186 @samp{-l} in @code{xargs}.
1187
1188 @item max-load
1189 @samp{-l} in Make.
1190
1191 @item max-procs
1192 @samp{-P} in @code{xargs}.
1193
1194 @item mesg
1195 @samp{-T} in @code{who}.
1196
1197 @item message
1198 @samp{-T} in @code{who}.
1199
1200 @item minimal
1201 @samp{-d} in @code{diff}.
1202
1203 @item mixed-uuencode
1204 @samp{-M} in @code{shar}.
1205
1206 @item mode
1207 @samp{-m} in @code{install}, @code{mkdir}, and @code{mkfifo}.
1208
1209 @item modification-time
1210 @samp{-m} in @code{tar}.
1211
1212 @item multi-volume
1213 @samp{-M} in @code{tar}.
1214
1215 @item name-prefix
1216 @samp{-a} in Bison.
1217
1218 @item nesting-limit
1219 @samp{-L} in @code{m4}.
1220
1221 @item net-headers
1222 @samp{-a} in @code{shar}.
1223
1224 @item new-file
1225 @samp{-W} in Make.
1226
1227 @item no-builtin-rules
1228 @samp{-r} in Make.
1229
1230 @item no-character-count
1231 @samp{-w} in @code{shar}.
1232
1233 @item no-check-existing
1234 @samp{-x} in @code{shar}.
1235
1236 @item no-common
1237 @samp{-3} in @code{wdiff}.
1238
1239 @item no-create
1240 @samp{-c} in @code{touch}.
1241
1242 @item no-defines
1243 @samp{-D} in @code{etags}.
1244
1245 @item no-deleted
1246 @samp{-1} in @code{wdiff}.
1247
1248 @item no-dereference
1249 @samp{-d} in @code{cp}.
1250
1251 @item no-inserted
1252 @samp{-2} in @code{wdiff}.
1253
1254 @item no-keep-going
1255 @samp{-S} in Make.
1256
1257 @item no-lines
1258 @samp{-l} in Bison.
1259
1260 @item no-piping
1261 @samp{-P} in @code{shar}.
1262
1263 @item no-prof
1264 @samp{-e} in @code{gprof}.
1265
1266 @item no-regex
1267 @samp{-R} in @code{etags}.
1268
1269 @item no-sort
1270 @samp{-p} in @code{nm}.
1271
1272 @item no-split
1273 Used in @code{makeinfo}.
1274
1275 @item no-static
1276 @samp{-a} in @code{gprof}.
1277
1278 @item no-time
1279 @samp{-E} in @code{gprof}.
1280
1281 @item no-timestamp
1282 @samp{-m} in @code{shar}.
1283
1284 @item no-validate
1285 Used in @code{makeinfo}.
1286
1287 @item no-wait
1288 Used in @code{emacsclient}.
1289
1290 @item no-warn
1291 Used in various programs to inhibit warnings.
1292
1293 @item node
1294 @samp{-n} in @code{info}.
1295
1296 @item nodename
1297 @samp{-n} in @code{uname}.
1298
1299 @item nonmatching
1300 @samp{-f} in @code{cpio}.
1301
1302 @item nstuff
1303 @samp{-n} in @code{objdump}.
1304
1305 @item null
1306 @samp{-0} in @code{xargs}.
1307
1308 @item number
1309 @samp{-n} in @code{cat}.
1310
1311 @item number-nonblank
1312 @samp{-b} in @code{cat}.
1313
1314 @item numeric-sort
1315 @samp{-n} in @code{nm}.
1316
1317 @item numeric-uid-gid
1318 @samp{-n} in @code{cpio} and @code{ls}.
1319
1320 @item nx
1321 Used in GDB.
1322
1323 @item old-archive
1324 @samp{-o} in @code{tar}.
1325
1326 @item old-file
1327 @samp{-o} in Make.
1328
1329 @item one-file-system
1330 @samp{-l} in @code{tar}, @code{cp}, and @code{du}.
1331
1332 @item only-file
1333 @samp{-o} in @code{ptx}.
1334
1335 @item only-prof
1336 @samp{-f} in @code{gprof}.
1337
1338 @item only-time
1339 @samp{-F} in @code{gprof}.
1340
1341 @item output
1342 In various programs, specify the output file name.
1343
1344 @item output-prefix
1345 @samp{-o} in @code{shar}.
1346
1347 @item override
1348 @samp{-o} in @code{rm}.
1349
1350 @item overwrite
1351 @samp{-c} in @code{unshar}.
1352
1353 @item owner
1354 @samp{-o} in @code{install}.
1355
1356 @item paginate
1357 @samp{-l} in @code{diff}.
1358
1359 @item paragraph-indent
1360 Used in @code{makeinfo}.
1361
1362 @item parents
1363 @samp{-p} in @code{mkdir} and @code{rmdir}.
1364
1365 @item pass-all
1366 @samp{-p} in @code{ul}.
1367
1368 @item pass-through
1369 @samp{-p} in @code{cpio}.
1370
1371 @item port
1372 @samp{-P} in @code{finger}.
1373
1374 @item portability
1375 @samp{-c} in @code{cpio} and @code{tar}.
1376
1377 @item posix
1378 Used in @code{gawk}.
1379
1380 @item prefix-builtins
1381 @samp{-P} in @code{m4}.
1382
1383 @item prefix
1384 @samp{-f} in @code{csplit}.
1385
1386 @item preserve
1387 Used in @code{tar} and @code{cp}.
1388
1389 @item preserve-environment
1390 @samp{-p} in @code{su}.
1391
1392 @item preserve-modification-time
1393 @samp{-m} in @code{cpio}.
1394
1395 @item preserve-order
1396 @samp{-s} in @code{tar}.
1397
1398 @item preserve-permissions
1399 @samp{-p} in @code{tar}.
1400
1401 @item print
1402 @samp{-l} in @code{diff}.
1403
1404 @item print-chars
1405 @samp{-L} in @code{cmp}.
1406
1407 @item print-data-base
1408 @samp{-p} in Make.
1409
1410 @item print-directory
1411 @samp{-w} in Make.
1412
1413 @item print-file-name
1414 @samp{-o} in @code{nm}.
1415
1416 @item print-symdefs
1417 @samp{-s} in @code{nm}.
1418
1419 @item printer
1420 @samp{-p} in @code{wdiff}.
1421
1422 @item prompt
1423 @samp{-p} in @code{ed}.
1424
1425 @item query-user
1426 @samp{-X} in @code{shar}.
1427
1428 @item question
1429 @samp{-q} in Make.
1430
1431 @item quiet
1432 Used in many programs to inhibit the usual output.  @strong{Note:} every
1433 program accepting @samp{--quiet} should accept @samp{--silent} as a
1434 synonym.
1435
1436 @item quiet-unshar
1437 @samp{-Q} in @code{shar}
1438
1439 @item quote-name
1440 @samp{-Q} in @code{ls}.
1441
1442 @item rcs
1443 @samp{-n} in @code{diff}.
1444
1445 @item re-interval
1446 Used in @code{gawk}.
1447
1448 @item read-full-blocks
1449 @samp{-B} in @code{tar}.
1450
1451 @item readnow
1452 Used in GDB.
1453
1454 @item recon
1455 @samp{-n} in Make.
1456
1457 @item record-number
1458 @samp{-R} in @code{tar}.
1459
1460 @item recursive
1461 Used in @code{chgrp}, @code{chown}, @code{cp}, @code{ls}, @code{diff},
1462 and @code{rm}.
1463
1464 @item reference-limit
1465 Used in @code{makeinfo}.
1466
1467 @item references
1468 @samp{-r} in @code{ptx}.
1469
1470 @item regex
1471 @samp{-r} in @code{tac} and @code{etags}.
1472
1473 @item release
1474 @samp{-r} in @code{uname}.
1475
1476 @item reload-state
1477 @samp{-R} in @code{m4}.
1478
1479 @item relocation
1480 @samp{-r} in @code{objdump}.
1481
1482 @item rename
1483 @samp{-r} in @code{cpio}.
1484
1485 @item replace
1486 @samp{-i} in @code{xargs}.
1487
1488 @item report-identical-files
1489 @samp{-s} in @code{diff}.
1490
1491 @item reset-access-time
1492 @samp{-a} in @code{cpio}.
1493
1494 @item reverse
1495 @samp{-r} in @code{ls} and @code{nm}.
1496
1497 @item reversed-ed
1498 @samp{-f} in @code{diff}.
1499
1500 @item right-side-defs
1501 @samp{-R} in @code{ptx}.
1502
1503 @item same-order
1504 @samp{-s} in @code{tar}.
1505
1506 @item same-permissions
1507 @samp{-p} in @code{tar}.
1508
1509 @item save
1510 @samp{-g} in @code{stty}.
1511
1512 @item se
1513 Used in GDB.
1514
1515 @item sentence-regexp
1516 @samp{-S} in @code{ptx}.
1517
1518 @item separate-dirs
1519 @samp{-S} in @code{du}.
1520
1521 @item separator
1522 @samp{-s} in @code{tac}.
1523
1524 @item sequence
1525 Used by @code{recode} to chose files or pipes for sequencing passes.
1526
1527 @item shell
1528 @samp{-s} in @code{su}.
1529
1530 @item show-all
1531 @samp{-A} in @code{cat}.
1532
1533 @item show-c-function
1534 @samp{-p} in @code{diff}.
1535
1536 @item show-ends
1537 @samp{-E} in @code{cat}.
1538
1539 @item show-function-line
1540 @samp{-F} in @code{diff}.
1541
1542 @item show-tabs
1543 @samp{-T} in @code{cat}.
1544
1545 @item silent
1546 Used in many programs to inhibit the usual output.
1547 @strong{Note:} every program accepting
1548 @samp{--silent} should accept @samp{--quiet} as a synonym.
1549
1550 @item size
1551 @samp{-s} in @code{ls}.
1552
1553 @item sort
1554 Used in @code{ls}.
1555
1556 @item source
1557 @samp{-W source} in @code{gawk}.
1558
1559 @item sparse
1560 @samp{-S} in @code{tar}.
1561
1562 @item speed-large-files
1563 @samp{-H} in @code{diff}.
1564
1565 @item split-at
1566 @samp{-E} in @code{unshar}.
1567
1568 @item split-size-limit
1569 @samp{-L} in @code{shar}.
1570
1571 @item squeeze-blank
1572 @samp{-s} in @code{cat}.
1573
1574 @item start-delete
1575 @samp{-w} in @code{wdiff}.
1576
1577 @item start-insert
1578 @samp{-y} in @code{wdiff}.
1579
1580 @item starting-file
1581 Used in @code{tar} and @code{diff} to specify which file within
1582 a directory to start processing with.
1583
1584 @item statistics
1585 @samp{-s} in @code{wdiff}.
1586
1587 @item stdin-file-list
1588 @samp{-S} in @code{shar}.
1589
1590 @item stop
1591 @samp{-S} in Make.
1592
1593 @item strict
1594 @samp{-s} in @code{recode}.
1595
1596 @item strip
1597 @samp{-s} in @code{install}.
1598
1599 @item strip-all
1600 @samp{-s} in @code{strip}.
1601
1602 @item strip-debug
1603 @samp{-S} in @code{strip}.
1604
1605 @item submitter
1606 @samp{-s} in @code{shar}.
1607
1608 @item suffix
1609 @samp{-S} in @code{cp}, @code{ln}, @code{mv}.
1610
1611 @item suffix-format
1612 @samp{-b} in @code{csplit}.
1613
1614 @item sum
1615 @samp{-s} in @code{gprof}.
1616
1617 @item summarize
1618 @samp{-s} in @code{du}.
1619
1620 @item symbolic
1621 @samp{-s} in @code{ln}.
1622
1623 @item symbols
1624 Used in GDB and @code{objdump}.
1625
1626 @item synclines
1627 @samp{-s} in @code{m4}.
1628
1629 @item sysname
1630 @samp{-s} in @code{uname}.
1631
1632 @item tabs
1633 @samp{-t} in @code{expand} and @code{unexpand}.
1634
1635 @item tabsize
1636 @samp{-T} in @code{ls}.
1637
1638 @item terminal
1639 @samp{-T} in @code{tput} and @code{ul}.
1640 @samp{-t} in @code{wdiff}.
1641
1642 @item text
1643 @samp{-a} in @code{diff}.
1644
1645 @item text-files
1646 @samp{-T} in @code{shar}.
1647
1648 @item time
1649 Used in @code{ls} and @code{touch}.
1650
1651 @item to-stdout
1652 @samp{-O} in @code{tar}.
1653
1654 @item total
1655 @samp{-c} in @code{du}.
1656
1657 @item touch
1658 @samp{-t} in Make, @code{ranlib}, and @code{recode}.
1659
1660 @item trace
1661 @samp{-t} in @code{m4}.
1662
1663 @item traditional
1664 @samp{-t} in @code{hello};
1665 @samp{-W traditional} in @code{gawk};
1666 @samp{-G} in @code{ed}, @code{m4}, and @code{ptx}.
1667
1668 @item tty
1669 Used in GDB.
1670
1671 @item typedefs
1672 @samp{-t} in @code{ctags}.
1673
1674 @item typedefs-and-c++
1675 @samp{-T} in @code{ctags}.
1676
1677 @item typeset-mode
1678 @samp{-t} in @code{ptx}.
1679
1680 @item uncompress
1681 @samp{-z} in @code{tar}.
1682
1683 @item unconditional
1684 @samp{-u} in @code{cpio}.
1685
1686 @item undefine
1687 @samp{-U} in @code{m4}.
1688
1689 @item undefined-only
1690 @samp{-u} in @code{nm}.
1691
1692 @item update
1693 @samp{-u} in @code{cp}, @code{ctags}, @code{mv}, @code{tar}.
1694
1695 @item usage
1696 Used in @code{gawk}; same as @samp{--help}.
1697
1698 @item uuencode
1699 @samp{-B} in @code{shar}.
1700
1701 @item vanilla-operation
1702 @samp{-V} in @code{shar}.
1703
1704 @item verbose
1705 Print more information about progress.  Many programs support this.
1706
1707 @item verify
1708 @samp{-W} in @code{tar}.
1709
1710 @item version
1711 Print the version number.
1712
1713 @item version-control
1714 @samp{-V} in @code{cp}, @code{ln}, @code{mv}.
1715
1716 @item vgrind
1717 @samp{-v} in @code{ctags}.
1718
1719 @item volume
1720 @samp{-V} in @code{tar}.
1721
1722 @item what-if
1723 @samp{-W} in Make.
1724
1725 @item whole-size-limit
1726 @samp{-l} in @code{shar}.
1727
1728 @item width
1729 @samp{-w} in @code{ls} and @code{ptx}.
1730
1731 @item word-regexp
1732 @samp{-W} in @code{ptx}.
1733
1734 @item writable
1735 @samp{-T} in @code{who}.
1736
1737 @item zeros
1738 @samp{-z} in @code{gprof}.
1739 @end table
1740
1741 @node Memory Usage
1742 @section Memory Usage
1743
1744 If it typically uses just a few meg of memory, don't bother making any
1745 effort to reduce memory usage.  For example, if it is impractical for
1746 other reasons to operate on files more than a few meg long, it is
1747 reasonable to read entire input files into core to operate on them.
1748
1749 However, for programs such as @code{cat} or @code{tail}, that can
1750 usefully operate on very large files, it is important to avoid using a
1751 technique that would artificially limit the size of files it can handle.
1752 If a program works by lines and could be applied to arbitrary
1753 user-supplied input files, it should keep only a line in memory, because
1754 this is not very hard and users will want to be able to operate on input
1755 files that are bigger than will fit in core all at once.
1756
1757 If your program creates complicated data structures, just make them in
1758 core and give a fatal error if @code{malloc} returns zero.
1759
1760 @node Writing C
1761 @chapter Making The Best Use of C
1762
1763 This @value{CHAPTER} provides advice on how best to use the C language
1764 when writing GNU software.
1765
1766 @menu
1767 * Formatting::                  Formatting Your Source Code
1768 * Comments::                    Commenting Your Work
1769 * Syntactic Conventions::       Clean Use of C Constructs
1770 * Names::                       Naming Variables and Functions
1771 * System Portability::          Portability between different operating systems
1772 * CPU Portability::             Supporting the range of CPU types
1773 * System Functions::            Portability and ``standard'' library functions
1774 * Internationalization::        Techniques for internationalization
1775 * Mmap::                        How you can safely use @code{mmap}.
1776 @end menu
1777
1778 @node Formatting
1779 @section Formatting Your Source Code
1780
1781 It is important to put the open-brace that starts the body of a C
1782 function in column zero, and avoid putting any other open-brace or
1783 open-parenthesis or open-bracket in column zero.  Several tools look
1784 for open-braces in column zero to find the beginnings of C functions.
1785 These tools will not work on code not formatted that way.
1786
1787 It is also important for function definitions to start the name of the
1788 function in column zero.  This helps people to search for function
1789 definitions, and may also help certain tools recognize them.  Thus,
1790 the proper format is this:
1791
1792 @example
1793 static char *
1794 concat (s1, s2)        /* Name starts in column zero here */
1795      char *s1, *s2;
1796 @{                     /* Open brace in column zero here */
1797   @dots{}
1798 @}
1799 @end example
1800
1801 @noindent
1802 or, if you want to use @sc{ansi} C, format the definition like this:
1803
1804 @example
1805 static char *
1806 concat (char *s1, char *s2)
1807 @{
1808   @dots{}
1809 @}
1810 @end example
1811
1812 In @sc{ansi} C, if the arguments don't fit nicely on one line,
1813 split it like this:
1814
1815 @example
1816 int
1817 lots_of_args (int an_integer, long a_long, short a_short,
1818               double a_double, float a_float)
1819 @dots{}
1820 @end example
1821
1822 For the body of the function, we prefer code formatted like this:
1823
1824 @example
1825 if (x < foo (y, z))
1826   haha = bar[4] + 5;
1827 else
1828   @{
1829     while (z)
1830       @{
1831         haha += foo (z, z);
1832         z--;
1833       @}
1834     return ++x + bar ();
1835   @}
1836 @end example
1837
1838 We find it easier to read a program when it has spaces before the
1839 open-parentheses and after the commas.  Especially after the commas.
1840
1841 When you split an expression into multiple lines, split it
1842 before an operator, not after one.  Here is the right way:
1843
1844 @example
1845 if (foo_this_is_long && bar > win (x, y, z)
1846     && remaining_condition)
1847 @end example
1848
1849 Try to avoid having two operators of different precedence at the same
1850 level of indentation.  For example, don't write this:
1851
1852 @example
1853 mode = (inmode[j] == VOIDmode
1854         || GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])
1855         ? outmode[j] : inmode[j]);
1856 @end example
1857
1858 Instead, use extra parentheses so that the indentation shows the nesting:
1859
1860 @example
1861 mode = ((inmode[j] == VOIDmode
1862          || (GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])))
1863         ? outmode[j] : inmode[j]);
1864 @end example
1865
1866 Insert extra parentheses so that Emacs will indent the code properly.
1867 For example, the following indentation looks nice if you do it by hand,
1868 but Emacs would mess it up:
1869
1870 @example
1871 v = rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
1872     + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000;
1873 @end example
1874
1875 But adding a set of parentheses solves the problem:
1876
1877 @example
1878 v = (rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
1879      + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000);
1880 @end example
1881
1882 Format do-while statements like this:
1883
1884 @example
1885 do
1886   @{
1887     a = foo (a);
1888   @}
1889 while (a > 0);
1890 @end example
1891
1892 Please use formfeed characters (control-L) to divide the program into
1893 pages at logical places (but not within a function).  It does not matter
1894 just how long the pages are, since they do not have to fit on a printed
1895 page.  The formfeeds should appear alone on lines by themselves.
1896
1897
1898 @node Comments
1899 @section Commenting Your Work
1900
1901 Every program should start with a comment saying briefly what it is for.
1902 Example: @samp{fmt - filter for simple filling of text}.
1903
1904 Please write the comments in a GNU program in English, because English
1905 is the one language that nearly all programmers in all countries can
1906 read.  If you do not write English well, please write comments in
1907 English as well as you can, then ask other people to help rewrite them.
1908 If you can't write comments in English, please find someone to work with
1909 you and translate your comments into English.
1910
1911 Please put a comment on each function saying what the function does,
1912 what sorts of arguments it gets, and what the possible values of
1913 arguments mean and are used for.  It is not necessary to duplicate in
1914 words the meaning of the C argument declarations, if a C type is being
1915 used in its customary fashion.  If there is anything nonstandard about
1916 its use (such as an argument of type @code{char *} which is really the
1917 address of the second character of a string, not the first), or any
1918 possible values that would not work the way one would expect (such as,
1919 that strings containing newlines are not guaranteed to work), be sure
1920 to say so.
1921
1922 Also explain the significance of the return value, if there is one.
1923
1924 Please put two spaces after the end of a sentence in your comments, so
1925 that the Emacs sentence commands will work.  Also, please write
1926 complete sentences and capitalize the first word.  If a lower-case
1927 identifier comes at the beginning of a sentence, don't capitalize it!
1928 Changing the spelling makes it a different identifier.  If you don't
1929 like starting a sentence with a lower case letter, write the sentence
1930 differently (e.g., ``The identifier lower-case is @dots{}'').
1931
1932 The comment on a function is much clearer if you use the argument
1933 names to speak about the argument values.  The variable name itself
1934 should be lower case, but write it in upper case when you are speaking
1935 about the value rather than the variable itself.  Thus, ``the inode
1936 number NODE_NUM'' rather than ``an inode''.
1937
1938 There is usually no purpose in restating the name of the function in
1939 the comment before it, because the reader can see that for himself.
1940 There might be an exception when the comment is so long that the function
1941 itself would be off the bottom of the screen.
1942
1943 There should be a comment on each static variable as well, like this:
1944
1945 @example
1946 /* Nonzero means truncate lines in the display;
1947    zero means continue them.  */
1948 int truncate_lines;
1949 @end example
1950
1951 Every @samp{#endif} should have a comment, except in the case of short
1952 conditionals (just a few lines) that are not nested.  The comment should
1953 state the condition of the conditional that is ending, @emph{including
1954 its sense}.  @samp{#else} should have a comment describing the condition
1955 @emph{and sense} of the code that follows.  For example:
1956
1957 @example
1958 @group
1959 #ifdef foo
1960   @dots{}
1961 #else /* not foo */
1962   @dots{}
1963 #endif /* not foo */
1964 @end group
1965 @end example
1966
1967 @noindent
1968 but, by contrast, write the comments this way for a @samp{#ifndef}:
1969
1970 @example
1971 @group
1972 #ifndef foo
1973   @dots{}
1974 #else /* foo */
1975   @dots{}
1976 #endif /* foo */
1977 @end group
1978 @end example
1979
1980
1981 @node Syntactic Conventions
1982 @section Clean Use of C Constructs
1983
1984 Please explicitly declare all arguments to functions.
1985 Don't omit them just because they are @code{int}s.
1986
1987 Declarations of external functions and functions to appear later in the
1988 source file should all go in one place near the beginning of the file
1989 (somewhere before the first function definition in the file), or else
1990 should go in a header file.  Don't put @code{extern} declarations inside
1991 functions.
1992
1993 It used to be common practice to use the same local variables (with
1994 names like @code{tem}) over and over for different values within one
1995 function.  Instead of doing this, it is better declare a separate local
1996 variable for each distinct purpose, and give it a name which is
1997 meaningful.  This not only makes programs easier to understand, it also
1998 facilitates optimization by good compilers.  You can also move the
1999 declaration of each local variable into the smallest scope that includes
2000 all its uses.  This makes the program even cleaner.
2001
2002 Don't use local variables or parameters that shadow global identifiers.
2003
2004 Don't declare multiple variables in one declaration that spans lines.
2005 Start a new declaration on each line, instead.  For example, instead
2006 of this:
2007
2008 @example
2009 @group
2010 int    foo,
2011        bar;
2012 @end group
2013 @end example
2014
2015 @noindent
2016 write either this:
2017
2018 @example
2019 int foo, bar;
2020 @end example
2021
2022 @noindent
2023 or this:
2024
2025 @example
2026 int foo;
2027 int bar;
2028 @end example
2029
2030 @noindent
2031 (If they are global variables, each should have a comment preceding it
2032 anyway.)
2033
2034 When you have an @code{if}-@code{else} statement nested in another
2035 @code{if} statement, always put braces around the @code{if}-@code{else}.
2036 Thus, never write like this:
2037
2038 @example
2039 if (foo)
2040   if (bar)
2041     win ();
2042   else
2043     lose ();
2044 @end example
2045
2046 @noindent
2047 always like this:
2048
2049 @example
2050 if (foo)
2051   @{
2052     if (bar)
2053       win ();
2054     else
2055       lose ();
2056   @}
2057 @end example
2058
2059 If you have an @code{if} statement nested inside of an @code{else}
2060 statement, either write @code{else if} on one line, like this,
2061
2062 @example
2063 if (foo)
2064   @dots{}
2065 else if (bar)
2066   @dots{}
2067 @end example
2068
2069 @noindent
2070 with its @code{then}-part indented like the preceding @code{then}-part,
2071 or write the nested @code{if} within braces like this:
2072
2073 @example
2074 if (foo)
2075   @dots{}
2076 else
2077   @{
2078     if (bar)
2079       @dots{}
2080   @}
2081 @end example
2082
2083 Don't declare both a structure tag and variables or typedefs in the
2084 same declaration.  Instead, declare the structure tag separately
2085 and then use it to declare the variables or typedefs.
2086
2087 Try to avoid assignments inside @code{if}-conditions.  For example,
2088 don't write this:
2089
2090 @example
2091 if ((foo = (char *) malloc (sizeof *foo)) == 0)
2092   fatal ("virtual memory exhausted");
2093 @end example
2094
2095 @noindent
2096 instead, write this:
2097
2098 @example
2099 foo = (char *) malloc (sizeof *foo);
2100 if (foo == 0)
2101   fatal ("virtual memory exhausted");
2102 @end example
2103
2104 Don't make the program ugly to placate @code{lint}.  Please don't insert any
2105 casts to @code{void}.  Zero without a cast is perfectly fine as a null
2106 pointer constant, except when calling a varargs function.
2107
2108 @node  Names
2109 @section Naming Variables and Functions
2110
2111 The names of global variables and functions in a program serve as
2112 comments of a sort.  So don't choose terse names---instead, look for
2113 names that give useful information about the meaning of the variable or
2114 function.  In a GNU program, names should be English, like other
2115 comments.
2116
2117 Local variable names can be shorter, because they are used only within
2118 one context, where (presumably) comments explain their purpose.
2119
2120 Please use underscores to separate words in a name, so that the Emacs
2121 word commands can be useful within them.  Stick to lower case; reserve
2122 upper case for macros and @code{enum} constants, and for name-prefixes
2123 that follow a uniform convention.
2124
2125 For example, you should use names like @code{ignore_space_change_flag};
2126 don't use names like @code{iCantReadThis}.
2127
2128 Variables that indicate whether command-line options have been
2129 specified should be named after the meaning of the option, not after
2130 the option-letter.  A comment should state both the exact meaning of
2131 the option and its letter.  For example,
2132
2133 @example
2134 @group
2135 /* Ignore changes in horizontal whitespace (-b).  */
2136 int ignore_space_change_flag;
2137 @end group
2138 @end example
2139
2140 When you want to define names with constant integer values, use
2141 @code{enum} rather than @samp{#define}.  GDB knows about enumeration
2142 constants.
2143
2144 Use file names of 14 characters or less, to avoid creating gratuitous
2145 problems on older System V systems.  You can use the program
2146 @code{doschk} to test for this.  @code{doschk} also tests for potential
2147 name conflicts if the files were loaded onto an MS-DOS file
2148 system---something you may or may not care about.
2149
2150 @node System Portability
2151 @section Portability between System Types
2152
2153 In the Unix world, ``portability'' refers to porting to different Unix
2154 versions.  For a GNU program, this kind of portability is desirable, but
2155 not paramount.
2156
2157 The primary purpose of GNU software is to run on top of the GNU kernel,
2158 compiled with the GNU C compiler, on various types of @sc{cpu}.  The
2159 amount and kinds of variation among GNU systems on different @sc{cpu}s
2160 will be comparable to the variation among Linux-based GNU systems or
2161 among BSD systems today.  So the kinds of portability that are absolutely
2162 necessary are quite limited.
2163
2164 But many users do run GNU software on non-GNU Unix or Unix-like systems.
2165 So supporting a variety of Unix-like systems is desirable, although not
2166 paramount.
2167
2168 The easiest way to achieve portability to most Unix-like systems is to
2169 use Autoconf.  It's unlikely that your program needs to know more
2170 information about the host platform than Autoconf can provide, simply
2171 because most of the programs that need such knowledge have already been
2172 written.
2173
2174 Avoid using the format of semi-internal data bases (e.g., directories)
2175 when there is a higher-level alternative (@code{readdir}).
2176
2177 As for systems that are not like Unix, such as MSDOS, Windows, the
2178 Macintosh, VMS, and MVS, supporting them is usually so much work that it
2179 is better if you don't.
2180
2181 The planned GNU kernel is not finished yet, but you can tell which
2182 facilities it will provide by looking at the GNU C Library Manual.  The
2183 GNU kernel is based on Mach, so the features of Mach will also be
2184 available.  However, if you use Mach features, you'll probably have
2185 trouble debugging your program today.
2186
2187 @node CPU Portability
2188 @section Portability between @sc{cpu}s
2189
2190 Even GNU systems will differ because of differences among @sc{cpu}
2191 types---for example, difference in byte ordering and alignment
2192 requirements.  It is absolutely essential to handle these differences.
2193 However, don't make any effort to cater to the possibility that an
2194 @code{int} will be less than 32 bits.  We don't support 16-bit machines
2195 in GNU.
2196
2197 Don't assume that the address of an @code{int} object is also the
2198 address of its least-significant byte.  This is false on big-endian
2199 machines.  Thus, don't make the following mistake:
2200
2201 @example
2202 int c;
2203 @dots{}
2204 while ((c = getchar()) != EOF)
2205   write(file_descriptor, &c, 1);
2206 @end example
2207
2208 When calling functions, you need not worry about the difference between
2209 pointers of various types, or between pointers and integers.  On most
2210 machines, there's no difference anyway.  As for the few machines where
2211 there is a difference, all of them support @sc{ansi} C, so you can use
2212 prototypes (conditionalized to be active only in @sc{ansi} C) to make
2213 the code work on those systems.
2214
2215 In certain cases, it is ok to pass integer and pointer arguments
2216 indiscriminately to the same function, and use no prototype on any
2217 system.  For example, many GNU programs have error-reporting functions
2218 that pass their arguments along to @code{printf} and friends:
2219
2220 @example
2221 error (s, a1, a2, a3)
2222      char *s;
2223      int a1, a2, a3;
2224 @{
2225   fprintf (stderr, "error: ");
2226   fprintf (stderr, s, a1, a2, a3);
2227 @}
2228 @end example
2229
2230 @noindent
2231 In practice, this works on all machines, and it is much simpler than any
2232 ``correct'' alternative.  Be sure @emph{not} to use a prototype
2233 for such functions.
2234
2235 However, avoid casting pointers to integers unless you really need to.
2236 These assumptions really reduce portability, and in most programs they
2237 are easy to avoid.  In the cases where casting pointers to integers is
2238 essential---such as, a Lisp interpreter which stores type information as
2239 well as an address in one word---it is ok to do so, but you'll have to
2240 make explicit provisions to handle different word sizes.
2241
2242 @node System Functions
2243 @section Calling System Functions
2244
2245 C implementations differ substantially.  @sc{ansi} C reduces but does not
2246 eliminate the incompatibilities; meanwhile, many users wish to compile
2247 GNU software with pre-@sc{ansi} compilers.  This chapter gives
2248 recommendations for how to use the more or less standard C library
2249 functions to avoid unnecessary loss of portability.
2250
2251 @itemize @bullet
2252 @item
2253 Don't use the value of @code{sprintf}.  It returns the number of
2254 characters written on some systems, but not on all systems.
2255
2256 @item
2257 @code{main} should be declared to return type @code{int}.  It should
2258 terminate either by calling @code{exit} or by returning the integer
2259 status code; make sure it cannot ever return an undefined value.
2260
2261 @item
2262 Don't declare system functions explicitly.
2263
2264 Almost any declaration for a system function is wrong on some system.
2265 To minimize conflicts, leave it to the system header files to declare
2266 system functions.  If the headers don't declare a function, let it
2267 remain undeclared.
2268
2269 While it may seem unclean to use a function without declaring it, in
2270 practice this works fine for most system library functions on the
2271 systems where this really happens; thus, the disadvantage is only
2272 theoretical.  By contrast, actual declarations have frequently caused
2273 actual conflicts.
2274
2275 @item
2276 If you must declare a system function, don't specify the argument types.
2277 Use an old-style declaration, not an @sc{ansi} prototype.  The more you
2278 specify about the function, the more likely a conflict.
2279
2280 @item
2281 In particular, don't unconditionally declare @code{malloc} or
2282 @code{realloc}.
2283
2284 Most GNU programs use those functions just once, in functions
2285 conventionally named @code{xmalloc} and @code{xrealloc}.  These
2286 functions call @code{malloc} and @code{realloc}, respectively, and
2287 check the results.
2288
2289 Because @code{xmalloc} and @code{xrealloc} are defined in your program,
2290 you can declare them in other files without any risk of type conflict.
2291
2292 On most systems, @code{int} is the same length as a pointer; thus, the
2293 calls to @code{malloc} and @code{realloc} work fine.  For the few
2294 exceptional systems (mostly 64-bit machines), you can use
2295 @strong{conditionalized} declarations of @code{malloc} and
2296 @code{realloc}---or put these declarations in configuration files
2297 specific to those systems.
2298
2299 @item
2300 The string functions require special treatment.  Some Unix systems have
2301 a header file @file{string.h}; others have @file{strings.h}.  Neither
2302 file name is portable.  There are two things you can do: use Autoconf to
2303 figure out which file to include, or don't include either file.
2304
2305 @item
2306 If you don't include either strings file, you can't get declarations for
2307 the string functions from the header file in the usual way.
2308
2309 That causes less of a problem than you might think.  The newer @sc{ansi}
2310 string functions should be avoided anyway because many systems still
2311 don't support them.  The string functions you can use are these:
2312
2313 @example
2314 strcpy   strncpy   strcat   strncat
2315 strlen   strcmp    strncmp
2316 strchr   strrchr
2317 @end example
2318
2319 The copy and concatenate functions work fine without a declaration as
2320 long as you don't use their values.  Using their values without a
2321 declaration fails on systems where the width of a pointer differs from
2322 the width of @code{int}, and perhaps in other cases.  It is trivial to
2323 avoid using their values, so do that.
2324
2325 The compare functions and @code{strlen} work fine without a declaration
2326 on most systems, possibly all the ones that GNU software runs on.
2327 You may find it necessary to declare them @strong{conditionally} on a
2328 few systems.
2329
2330 The search functions must be declared to return @code{char *}.  Luckily,
2331 there is no variation in the data type they return.  But there is
2332 variation in their names.  Some systems give these functions the names
2333 @code{index} and @code{rindex}; other systems use the names
2334 @code{strchr} and @code{strrchr}.  Some systems support both pairs of
2335 names, but neither pair works on all systems.
2336
2337 You should pick a single pair of names and use it throughout your
2338 program.  (Nowadays, it is better to choose @code{strchr} and
2339 @code{strrchr} for new programs, since those are the standard @sc{ansi}
2340 names.)  Declare both of those names as functions returning @code{char
2341 *}.  On systems which don't support those names, define them as macros
2342 in terms of the other pair.  For example, here is what to put at the
2343 beginning of your file (or in a header) if you want to use the names
2344 @code{strchr} and @code{strrchr} throughout:
2345
2346 @example
2347 #ifndef HAVE_STRCHR
2348 #define strchr index
2349 #endif
2350 #ifndef HAVE_STRRCHR
2351 #define strrchr rindex
2352 #endif
2353
2354 char *strchr ();
2355 char *strrchr ();
2356 @end example
2357 @end itemize
2358
2359 Here we assume that @code{HAVE_STRCHR} and @code{HAVE_STRRCHR} are
2360 macros defined in systems where the corresponding functions exist.
2361 One way to get them properly defined is to use Autoconf.
2362
2363 @node Internationalization
2364 @section Internationalization
2365
2366 GNU has a library called GNU gettext that makes it easy to translate the
2367 messages in a program into various languages.  You should use this
2368 library in every program.  Use English for the messages as they appear
2369 in the program, and let gettext provide the way to translate them into
2370 other languages.
2371
2372 Using GNU gettext involves putting a call to the @code{gettext} macro
2373 around each string that might need translation---like this:
2374
2375 @example
2376 printf (gettext ("Processing file `%s'..."));
2377 @end example
2378
2379 @noindent
2380 This permits GNU gettext to replace the string @code{"Processing file
2381 `%s'..."} with a translated version.
2382
2383 Once a program uses gettext, please make a point of writing calls to
2384 @code{gettext} when you add new strings that call for translation.
2385
2386 Using GNU gettext in a package involves specifying a @dfn{text domain
2387 name} for the package.  The text domain name is used to separate the
2388 translations for this package from the translations for other packages.
2389 Normally, the text domain name should be the same as the name of the
2390 package---for example, @samp{fileutils} for the GNU file utilities.
2391
2392 To enable gettext to work well, avoid writing code that makes
2393 assumptions about the structure of words or sentences.  When you want
2394 the precise text of a sentence to vary depending on the data, use two or
2395 more alternative string constants each containing a complete sentences,
2396 rather than inserting conditionalized words or phrases into a single
2397 sentence framework.
2398
2399 Here is an example of what not to do:
2400
2401 @example
2402 printf ("%d file%s processed", nfiles,
2403         nfiles != 1 ? "s" : "");
2404 @end example
2405
2406 @noindent
2407 The problem with that example is that it assumes that plurals are made
2408 by adding `s'.  If you apply gettext to the format string, like this,
2409
2410 @example
2411 printf (gettext ("%d file%s processed"), nfiles,
2412         nfiles != 1 ? "s" : "");
2413 @end example
2414
2415 @noindent
2416 the message can use different words, but it will still be forced to use
2417 `s' for the plural.  Here is a better way:
2418
2419 @example
2420 printf ((nfiles != 1 ? "%d files processed"
2421          : "%d file processed"),
2422         nfiles);
2423 @end example
2424
2425 @noindent
2426 This way, you can apply gettext to each of the two strings
2427 independently:
2428
2429 @example
2430 printf ((nfiles != 1 ? gettext ("%d files processed")
2431          : gettext ("%d file processed")),
2432         nfiles);
2433 @end example
2434
2435 @noindent
2436 This can any method of forming the plural of the word for ``file'', and
2437 also handles languages that require agreement in the word for
2438 ``processed''.
2439
2440 A similar problem appears at the level of sentence structure with this
2441 code:
2442
2443 @example
2444 printf ("#  Implicit rule search has%s been done.\n",
2445         f->tried_implicit ? "" : " not");
2446 @end example
2447
2448 @noindent
2449 Adding @code{gettext} calls to this code cannot give correct results for
2450 all languages, because negation in some languages requires adding words
2451 at more than one place in the sentence.  By contrast, adding
2452 @code{gettext} calls does the job straightfowardly if the code starts
2453 out like this:
2454
2455 @example
2456 printf (f->tried_implicit
2457         ? "#  Implicit rule search has been done.\n",
2458         : "#  Implicit rule search has not been done.\n");
2459 @end example
2460
2461 @node Mmap
2462 @section Mmap
2463
2464 Don't assume that @code{mmap} either works on all files or fails
2465 for all files.  It may work on some files and fail on others.
2466
2467 The proper way to use @code{mmap} is to try it on the specific file for
2468 which you want to use it---and if @code{mmap} doesn't work, fall back on
2469 doing the job in another way using @code{read} and @code{write}.
2470
2471 The reason this precaution is needed is that the GNU kernel (the HURD)
2472 provides a user-extensible file system, in which there can be many
2473 different kinds of ``ordinary files.''  Many of them support
2474 @code{mmap}, but some do not.  It is important to make programs handle
2475 all these kinds of files.
2476
2477 @node Documentation
2478 @chapter Documenting Programs
2479
2480 @menu
2481 * GNU Manuals::                 Writing proper manuals.
2482 * Manual Structure Details::    Specific structure conventions.
2483 * NEWS File::                   NEWS files supplement manuals.
2484 * Change Logs::                 Recording Changes
2485 * Man Pages::                   Man pages are secondary.
2486 * Reading other Manuals::       How far you can go in learning
2487                                 from other manuals.
2488 @end menu
2489
2490 @node GNU Manuals
2491 @section GNU Manuals
2492
2493 The preferred way to document part of the GNU system is to write a
2494 manual in the Texinfo formatting language.  See the Texinfo manual,
2495 either the hardcopy, or the on-line version available through
2496 @code{info} or the Emacs Info subsystem (@kbd{C-h i}).
2497
2498 Programmers often find it most natural to structure the documentation
2499 following the structure of the implementation, which they know.  But
2500 this structure is not necessarily good for explaining how to use the
2501 program; it may be irrelevant and confusing for a user.
2502
2503 At every level, from the sentences in a paragraph to the grouping of
2504 topics into separate manuals, the right way to structure documentation
2505 is according to the concepts and questions that a user will have in mind
2506 when reading it.  Sometimes this structure of ideas matches the
2507 structure of the implementation of the software being documented---but
2508 often they are different.  Often the most important part of learning to
2509 write good documentation is learning to notice when you are structuring
2510 the documentation like the implementation, and think about better
2511 alternatives.
2512
2513 For example, each program in the GNU system probably ought to be
2514 documented in one manual; but this does not mean each program should
2515 have its own manual.  That would be following the structure of the
2516 implementation, rather than the structure that helps the user
2517 understand.
2518
2519 Instead, each manual should cover a coherent @emph{topic}.  For example,
2520 instead of a manual for @code{diff} and a manual for @code{diff3}, we
2521 have one manual for ``comparison of files'' which covers both of those
2522 programs, as well as @code{cmp}.  By documenting these programs
2523 together, we can make the whole subject clearer.
2524
2525 The manual which discusses a program should document all of the
2526 program's command-line options and all of its commands.  It should give
2527 examples of their use.  But don't organize the manual as a list of
2528 features.  Instead, organize it logically, by subtopics.  Address the
2529 questions that a user will ask when thinking about the job that the
2530 program does.
2531
2532 In general, a GNU manual should serve both as tutorial and reference.
2533 It should be set up for convenient access to each topic through Info,
2534 and for reading straight through (appendixes aside).  A GNU manual
2535 should give a good introduction to a beginner reading through from the
2536 start, and should also provide all the details that hackers want.
2537
2538 That is not as hard as it first sounds.  Arrange each chapter as a
2539 logical breakdown of its topic, but order the sections, and write their
2540 text, so that reading the chapter straight through makes sense.  Do
2541 likewise when structuring the book into chapters, and when structuring a
2542 section into paragraphs.  The watchword is, @emph{at each point, address
2543 the most fundamental and important issue raised by the preceding text.}
2544
2545 If necessary, add extra chapters at the beginning of the manual which
2546 are purely tutorial and cover the basics of the subject.  These provide
2547 the framework for a beginner to understand the rest of the manual.  The
2548 Bison manual provides a good example of how to do this.
2549
2550 Don't use Unix man pages as a model for how to write GNU documentation;
2551 most of them are terse, badly structured, and give inadequate
2552 explanation of the underlying concepts.  (There are, of course
2553 exceptions.)  Also Unix man pages use a particular format which is
2554 different from what we use in GNU manuals.
2555
2556 Please do not use the term ``pathname'' that is used in Unix
2557 documentation; use ``file name'' (two words) instead.  We use the term
2558 ``path'' only for search paths, which are lists of file names.
2559
2560 Please do not use the term ``illegal'' to refer to erroneous input to a
2561 computer program.  Please use ``invalid'' for this, and reserve the term
2562 ``illegal'' for violations of law.
2563
2564 @node Manual Structure Details
2565 @section Manual Structure Details
2566
2567 The title page of the manual should state the version of the programs or
2568 packages documented in the manual.  The Top node of the manual should
2569 also contain this information.  If the manual is changing more
2570 frequently than or independent of the program, also state a version
2571 number for the manual in both of these places.
2572
2573 Each program documented in the manual should should have a node named
2574 @samp{@var{program} Invocation} or @samp{Invoking @var{program}}.  This
2575 node (together with its subnodes, if any) should describe the program's
2576 command line arguments and how to run it (the sort of information people
2577 would look in a man page for).  Start with an @samp{@@example}
2578 containing a template for all the options and arguments that the program
2579 uses.
2580
2581 Alternatively, put a menu item in some menu whose item name fits one of
2582 the above patterns.  This identifies the node which that item points to
2583 as the node for this purpose, regardless of the node's actual name.
2584
2585 There will be automatic features for specifying a program name and
2586 quickly reading just this part of its manual.
2587
2588 If one manual describes several programs, it should have such a node for
2589 each program described.
2590
2591 @node NEWS File
2592 @section The NEWS File
2593
2594 In addition to its manual, the package should have a file named
2595 @file{NEWS} which contains a list of user-visible changes worth
2596 mentioning.  In each new release, add items to the front of the file and
2597 identify the version they pertain to.  Don't discard old items; leave
2598 them in the file after the newer items.  This way, a user upgrading from
2599 any previous version can see what is new.
2600
2601 If the @file{NEWS} file gets very long, move some of the older items
2602 into a file named @file{ONEWS} and put a note at the end referring the
2603 user to that file.
2604
2605 @node Change Logs
2606 @section Change Logs
2607
2608 Keep a change log to describe all the changes made to program source
2609 files.  The purpose of this is so that people investigating bugs in the
2610 future will know about the changes that might have introduced the bug.
2611 Often a new bug can be found by looking at what was recently changed.
2612 More importantly, change logs can help you eliminate conceptual
2613 inconsistencies between different parts of a program, by giving you a
2614 history of how the conflicting concepts arose and who they came from.
2615
2616 @menu
2617 * Change Log Concepts::         
2618 * Style of Change Logs::        
2619 * Simple Changes::              
2620 * Conditional Changes::         
2621 @end menu
2622
2623 @node Change Log Concepts
2624 @subsection Change Log Concepts
2625
2626 You can think of the change log as a conceptual ``undo list'' which
2627 explains how earlier versions were different from the current version.
2628 People can see the current version; they don't need the change log
2629 to tell them what is in it.  What they want from a change log is a
2630 clear explanation of how the earlier version differed.
2631
2632 The change log file is normally called @file{ChangeLog} and covers an
2633 entire directory.  Each directory can have its own change log, or a
2634 directory can use the change log of its parent directory--it's up to
2635 you.
2636
2637 Another alternative is to record change log information with a version
2638 control system such as RCS or CVS.  This can be converted automatically
2639 to a @file{ChangeLog} file.
2640
2641 There's no need to describe the full purpose of the changes or how they
2642 work together.  If you think that a change calls for explanation, you're
2643 probably right.  Please do explain it---but please put the explanation
2644 in comments in the code, where people will see it whenever they see the
2645 code.  For example, ``New function'' is enough for the change log when
2646 you add a function, because there should be a comment before the
2647 function definition to explain what it does.
2648
2649 However, sometimes it is useful to write one line to describe the
2650 overall purpose of a batch of changes.
2651
2652 The easiest way to add an entry to @file{ChangeLog} is with the Emacs
2653 command @kbd{M-x add-change-log-entry}.  An entry should have an
2654 asterisk, the name of the changed file, and then in parentheses the name
2655 of the changed functions, variables or whatever, followed by a colon.
2656 Then describe the changes you made to that function or variable.
2657
2658 @node Style of Change Logs
2659 @subsection Style of Change Logs
2660
2661 Here are some examples of change log entries:
2662
2663 @example
2664 * register.el (insert-register): Return nil.
2665 (jump-to-register): Likewise.
2666
2667 * sort.el (sort-subr): Return nil.
2668
2669 * tex-mode.el (tex-bibtex-file, tex-file, tex-region):
2670 Restart the tex shell if process is gone or stopped.
2671 (tex-shell-running): New function.
2672
2673 * expr.c (store_one_arg): Round size up for move_block_to_reg.
2674 (expand_call): Round up when emitting USE insns.
2675 * stmt.c (assign_parms): Round size up for move_block_from_reg.
2676 @end example
2677
2678 It's important to name the changed function or variable in full.  Don't
2679 abbreviate function or variable names, and don't combine them.
2680 Subsequent maintainers will often search for a function name to find all
2681 the change log entries that pertain to it; if you abbreviate the name,
2682 they won't find it when they search.
2683
2684 For example, some people are tempted to abbreviate groups of function
2685 names by writing @samp{* register.el (@{insert,jump-to@}-register)};
2686 this is not a good idea, since searching for @code{jump-to-register} or
2687 @code{insert-register} would not find that entry.
2688
2689 Separate unrelated change log entries with blank lines.  When two
2690 entries represent parts of the same change, so that they work together,
2691 then don't put blank lines between them.  Then you can omit the file
2692 name and the asterisk when successive entries are in the same file.
2693
2694 @node Simple Changes
2695 @subsection Simple Changes
2696
2697 Certain simple kinds of changes don't need much detail in the change
2698 log.
2699
2700 When you change the calling sequence of a function in a simple fashion,
2701 and you change all the callers of the function, there is no need to make
2702 individual entries for all the callers that you changed.  Just write in
2703 the entry for the function being called, ``All callers changed.''
2704
2705 @example
2706 * keyboard.c (Fcommand_execute): New arg SPECIAL.
2707 All callers changed.
2708 @end example
2709
2710 When you change just comments or doc strings, it is enough to write an
2711 entry for the file, without mentioning the functions.  Just ``Doc
2712 fixes'' is enough for the change log.
2713
2714 There's no need to make change log entries for documentation files.
2715 This is because documentation is not susceptible to bugs that are hard
2716 to fix.  Documentation does not consist of parts that must interact in a
2717 precisely engineered fashion.  To correct an error, you need not know
2718 the history of the erroneous passage; it is enough to compare what the
2719 documentation says with the way the program actually works.
2720
2721 @node Conditional Changes
2722 @subsection Conditional Changes
2723
2724 C programs often contain compile-time @code{#if} conditionals.  Many
2725 changes are conditional; sometimes you add a new definition which is
2726 entirely contained in a conditional.  It is very useful to indicate in
2727 the change log the conditions for which the change applies.
2728
2729 Our convention for indicating conditional changes is to use square
2730 brackets around the name of the condition.
2731
2732 Here is a simple example, describing a change which is conditional but
2733 does not have a function or entity name associated with it:
2734
2735 @example
2736 * xterm.c [SOLARIS2]: Include string.h.
2737 @end example
2738
2739 Here is an entry describing a new definition which is entirely
2740 conditional.  This new definition for the macro @code{FRAME_WINDOW_P} is
2741 used only when @code{HAVE_X_WINDOWS} is defined:
2742
2743 @example
2744 * frame.h [HAVE_X_WINDOWS] (FRAME_WINDOW_P): Macro defined.
2745 @end example
2746
2747 Here is an entry for a change within the function @code{init_display},
2748 whose definition as a whole is unconditional, but the changes themselves
2749 are contained in a @samp{#ifdef HAVE_LIBNCURSES} conditional:
2750
2751 @example
2752 * dispnew.c (init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
2753 @end example
2754
2755 Here is an entry for a change that takes affect only when
2756 a certain macro is @emph{not} defined:
2757
2758 @example
2759 (gethostname) [!HAVE_SOCKETS]: Replace with winsock version.
2760 @end example
2761
2762 @node Man Pages
2763 @section Man Pages
2764
2765 In the GNU project, man pages are secondary.  It is not necessary or
2766 expected for every GNU program to have a man page, but some of them do.
2767 It's your choice whether to include a man page in your program.
2768
2769 When you make this decision, consider that supporting a man page
2770 requires continual effort each time the program is changed.  The time
2771 you spend on the man page is time taken away from more useful work.
2772
2773 For a simple program which changes little, updating the man page may be
2774 a small job.  Then there is little reason not to include a man page, if
2775 you have one.
2776
2777 For a large program that changes a great deal, updating a man page may
2778 be a substantial burden.  If a user offers to donate a man page, you may
2779 find this gift costly to accept.  It may be better to refuse the man
2780 page unless the same person agrees to take full responsibility for
2781 maintaining it---so that you can wash your hands of it entirely.  If
2782 this volunteer later ceases to do the job, then don't feel obliged to
2783 pick it up yourself; it may be better to withdraw the man page from the
2784 distribution until someone else agrees to update it.
2785
2786 When a program changes only a little, you may feel that the
2787 discrepancies are small enough that the man page remains useful without
2788 updating.  If so, put a prominent note near the beginning of the man
2789 page explaining that you don't maintain it and that the Texinfo manual
2790 is more authoritative.  The note should say how to access the Texinfo
2791 documentation.
2792
2793 @node Reading other Manuals
2794 @section Reading other Manuals
2795
2796 There may be non-free books or documentation files that describe the
2797 program you are documenting.
2798
2799 It is ok to use these documents for reference, just as the author of a
2800 new algebra textbook can read other books on algebra.  A large portion
2801 of any non-fiction book consists of facts, in this case facts about how
2802 a certain program works, and these facts are necessarily the same for
2803 everyone who writes about the subject.  But be careful not to copy your
2804 outline structure, wording, tables or examples from preexisting non-free
2805 documentation.  Copying from free documentation may be ok; please check
2806 with the FSF about the individual case.
2807
2808 @node Managing Releases
2809 @chapter The Release Process
2810
2811 Making a release is more than just bundling up your source files in a
2812 tar file and putting it up for FTP.  You should set up your software so
2813 that it can be configured to run on a variety of systems.  Your Makefile
2814 should conform to the GNU standards described below, and your directory
2815 layout should also conform to the standards discussed below.  Doing so
2816 makes it easy to include your package into the larger framework of
2817 all GNU software.
2818
2819 @menu
2820 * Configuration::               How Configuration Should Work
2821 * Makefile Conventions::        Makefile Conventions
2822 * Releases::                    Making Releases
2823 @end menu
2824
2825 @node Configuration
2826 @section How Configuration Should Work
2827
2828 Each GNU distribution should come with a shell script named
2829 @code{configure}.  This script is given arguments which describe the
2830 kind of machine and system you want to compile the program for.
2831
2832 The @code{configure} script must record the configuration options so
2833 that they affect compilation.
2834
2835 One way to do this is to make a link from a standard name such as
2836 @file{config.h} to the proper configuration file for the chosen system.
2837 If you use this technique, the distribution should @emph{not} contain a
2838 file named @file{config.h}.  This is so that people won't be able to
2839 build the program without configuring it first.
2840
2841 Another thing that @code{configure} can do is to edit the Makefile.  If
2842 you do this, the distribution should @emph{not} contain a file named
2843 @file{Makefile}.  Instead, it should include a file @file{Makefile.in} which
2844 contains the input used for editing.  Once again, this is so that people
2845 won't be able to build the program without configuring it first.
2846
2847 If @code{configure} does write the @file{Makefile}, then @file{Makefile}
2848 should have a target named @file{Makefile} which causes @code{configure}
2849 to be rerun, setting up the same configuration that was set up last
2850 time.  The files that @code{configure} reads should be listed as
2851 dependencies of @file{Makefile}.
2852
2853 All the files which are output from the @code{configure} script should
2854 have comments at the beginning explaining that they were generated
2855 automatically using @code{configure}.  This is so that users won't think
2856 of trying to edit them by hand.
2857
2858 The @code{configure} script should write a file named @file{config.status}
2859 which describes which configuration options were specified when the
2860 program was last configured.  This file should be a shell script which,
2861 if run, will recreate the same configuration.
2862
2863 The @code{configure} script should accept an option of the form
2864 @samp{--srcdir=@var{dirname}} to specify the directory where sources are found
2865 (if it is not the current directory).  This makes it possible to build
2866 the program in a separate directory, so that the actual source directory
2867 is not modified.
2868
2869 If the user does not specify @samp{--srcdir}, then @code{configure} should
2870 check both @file{.} and @file{..} to see if it can find the sources.  If
2871 it finds the sources in one of these places, it should use them from
2872 there.  Otherwise, it should report that it cannot find the sources, and
2873 should exit with nonzero status.
2874
2875 Usually the easy way to support @samp{--srcdir} is by editing a
2876 definition of @code{VPATH} into the Makefile.  Some rules may need to
2877 refer explicitly to the specified source directory.  To make this
2878 possible, @code{configure} can add to the Makefile a variable named
2879 @code{srcdir} whose value is precisely the specified directory.
2880
2881 The @code{configure} script should also take an argument which specifies the
2882 type of system to build the program for.  This argument should look like
2883 this:
2884
2885 @example
2886 @var{cpu}-@var{company}-@var{system}
2887 @end example
2888
2889 For example, a Sun 3 might be @samp{m68k-sun-sunos4.1}.
2890
2891 The @code{configure} script needs to be able to decode all plausible
2892 alternatives for how to describe a machine.  Thus, @samp{sun3-sunos4.1}
2893 would be a valid alias.  For many programs, @samp{vax-dec-ultrix} would
2894 be an alias for @samp{vax-dec-bsd}, simply because the differences
2895 between Ultrix and @sc{BSD} are rarely noticeable, but a few programs
2896 might need to distinguish them.
2897 @c Real 4.4BSD now runs on some Suns.
2898
2899 There is a shell script called @file{config.sub} that you can use
2900 as a subroutine to validate system types and canonicalize aliases.
2901
2902 Other options are permitted to specify in more detail the software
2903 or hardware present on the machine, and include or exclude optional
2904 parts of the package:
2905
2906 @table @samp
2907 @item --enable-@var{feature}@r{[}=@var{parameter}@r{]}
2908 Configure the package to build and install an optional user-level
2909 facility called @var{feature}.  This allows users to choose which
2910 optional features to include.  Giving an optional @var{parameter} of
2911 @samp{no} should omit @var{feature}, if it is built by default.
2912
2913 No @samp{--enable} option should @strong{ever} cause one feature to
2914 replace another.  No @samp{--enable} option should ever substitute one
2915 useful behavior for another useful behavior.  The only proper use for
2916 @samp{--enable} is for questions of whether to build part of the program
2917 or exclude it.
2918
2919 @item --with-@var{package}
2920 @c @r{[}=@var{parameter}@r{]}
2921 The package @var{package} will be installed, so configure this package
2922 to work with @var{package}.
2923
2924 @c  Giving an optional @var{parameter} of
2925 @c @samp{no} should omit @var{package}, if it is used by default.
2926
2927 Possible values of @var{package} include @samp{x}, @samp{x-toolkit},
2928 @samp{gnu-as} (or @samp{gas}), @samp{gnu-ld}, @samp{gnu-libc}, and
2929 @samp{gdb}.
2930
2931 Do not use a @samp{--with} option to specify the file name to use to
2932 find certain files.  That is outside the scope of what @samp{--with}
2933 options are for.
2934
2935 @item --nfp
2936 The target machine has no floating point processor.
2937
2938 @item --gas
2939 The target machine assembler is GAS, the GNU assembler.
2940 This is obsolete; users should use @samp{--with-gnu-as} instead.
2941
2942 @item --x
2943 The target machine has the X Window System installed.
2944 This is obsolete; users should use @samp{--with-x} instead.
2945 @end table
2946
2947 All @code{configure} scripts should accept all of these ``detail''
2948 options, whether or not they make any difference to the particular
2949 package at hand.  In particular, they should accept any option that
2950 starts with @samp{--with-} or @samp{--enable-}.  This is so users will
2951 be able to configure an entire GNU source tree at once with a single set
2952 of options.
2953
2954 You will note that the categories @samp{--with-} and @samp{--enable-}
2955 are narrow: they @strong{do not} provide a place for any sort of option
2956 you might think of.  That is deliberate.  We want to limit the possible
2957 configuration options in GNU software.  We do not want GNU programs to
2958 have idiosyncratic configuration options.
2959
2960 Packages that perform part of the compilation process may support cross-compilation.
2961 In such a case, the host and target machines for the program may be
2962 different.  The @code{configure} script should normally treat the
2963 specified type of system as both the host and the target, thus producing
2964 a program which works for the same type of machine that it runs on.
2965
2966 The way to build a cross-compiler, cross-assembler, or what have you, is
2967 to specify the option @samp{--host=@var{hosttype}} when running
2968 @code{configure}.  This specifies the host system without changing the
2969 type of target system.  The syntax for @var{hosttype} is the same as
2970 described above.
2971
2972 Bootstrapping a cross-compiler requires compiling it on a machine other
2973 than the host it will run on.  Compilation packages accept a
2974 configuration option @samp{--build=@var{hosttype}} for specifying the
2975 configuration on which you will compile them, in case that is different
2976 from the host.
2977
2978 Programs for which cross-operation is not meaningful need not accept the
2979 @samp{--host} option, because configuring an entire operating system for
2980 cross-operation is not a meaningful thing.
2981
2982 Some programs have ways of configuring themselves automatically.  If
2983 your program is set up to do this, your @code{configure} script can simply
2984 ignore most of its arguments.
2985
2986 @comment The makefile standards are in a separate file that is also
2987 @comment included by make.texinfo.  Done by roland@gnu.ai.mit.edu on 1/6/93.
2988 @comment For this document, turn chapters into sections, etc.
2989 @lowersections
2990 @include make-stds.texi
2991 @raisesections
2992
2993 @node Releases
2994 @section Making Releases
2995
2996 Package the distribution of Foo version 69.96 in a gzipped tar file
2997 named @file{foo-69.96.tar.gz}.  It should unpack into a subdirectory
2998 named @file{foo-69.96}.
2999
3000 Building and installing the program should never modify any of the files
3001 contained in the distribution.  This means that all the files that form
3002 part of the program in any way must be classified into @dfn{source
3003 files} and @dfn{non-source files}.  Source files are written by humans
3004 and never changed automatically; non-source files are produced from
3005 source files by programs under the control of the Makefile.
3006
3007 Naturally, all the source files must be in the distribution.  It is okay
3008 to include non-source files in the distribution, provided they are
3009 up-to-date and machine-independent, so that building the distribution
3010 normally will never modify them.  We commonly include non-source files
3011 produced by Bison, @code{lex}, @TeX{}, and @code{makeinfo}; this helps avoid
3012 unnecessary dependencies between our distributions, so that users can
3013 install whichever packages they want to install.
3014
3015 Non-source files that might actually be modified by building and
3016 installing the program should @strong{never} be included in the
3017 distribution.  So if you do distribute non-source files, always make
3018 sure they are up to date when you make a new distribution.
3019
3020 Make sure that the directory into which the distribution unpacks (as
3021 well as any subdirectories) are all world-writable (octal mode 777).
3022 This is so that old versions of @code{tar} which preserve the
3023 ownership and permissions of the files from the tar archive will be
3024 able to extract all the files even if the user is unprivileged.
3025
3026 Make sure that all the files in the distribution are world-readable.
3027
3028 Make sure that no file name in the distribution is more than 14
3029 characters long.  Likewise, no file created by building the program
3030 should have a name longer than 14 characters.  The reason for this is
3031 that some systems adhere to a foolish interpretation of the POSIX
3032 standard, and refuse to open a longer name, rather than truncating as
3033 they did in the past.
3034
3035 Don't include any symbolic links in the distribution itself.  If the tar
3036 file contains symbolic links, then people cannot even unpack it on
3037 systems that don't support symbolic links.  Also, don't use multiple
3038 names for one file in different directories, because certain file
3039 systems cannot handle this and that prevents unpacking the
3040 distribution.
3041
3042 Try to make sure that all the file names will be unique on MS-DOS.  A
3043 name on MS-DOS consists of up to 8 characters, optionally followed by a
3044 period and up to three characters.  MS-DOS will truncate extra
3045 characters both before and after the period.  Thus,
3046 @file{foobarhacker.c} and @file{foobarhacker.o} are not ambiguous; they
3047 are truncated to @file{foobarha.c} and @file{foobarha.o}, which are
3048 distinct.
3049
3050 Include in your distribution a copy of the @file{texinfo.tex} you used
3051 to test print any @file{*.texinfo} or @file{*.texi} files.
3052
3053 Likewise, if your program uses small GNU software packages like regex,
3054 getopt, obstack, or termcap, include them in the distribution file.
3055 Leaving them out would make the distribution file a little smaller at
3056 the expense of possible inconvenience to a user who doesn't know what
3057 other files to get.
3058
3059 @contents
3060
3061 @bye