autoupdate
[gnulib.git] / doc / standards.texi
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename standards.info
4 @settitle GNU Coding Standards
5 @c This date is automagically updated when you save this file:
6 @set lastupdate March 28, 2011
7 @c %**end of header
8
9 @dircategory GNU organization
10 @direntry
11 * Standards: (standards).       GNU coding standards.
12 @end direntry
13
14 @c @setchapternewpage odd
15 @setchapternewpage off
16
17 @c Put everything in one index (arbitrarily chosen to be the concept index).
18 @syncodeindex fn cp
19 @syncodeindex ky cp
20 @syncodeindex pg cp
21 @syncodeindex vr cp
22
23 @c This is used by a cross ref in make-stds.texi
24 @set CODESTD  1
25
26 @copying
27 The GNU coding standards, last updated @value{lastupdate}.
28
29 Copyright @copyright{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
30 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
31 Free Software Foundation, Inc.
32
33 Permission is granted to copy, distribute and/or modify this document
34 under the terms of the GNU Free Documentation License, Version 1.3 or
35 any later version published by the Free Software Foundation; with no
36 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
37 Texts.  A copy of the license is included in the section entitled
38 ``GNU Free Documentation License''.
39 @end copying
40
41 @titlepage
42 @title GNU Coding Standards
43 @author Richard Stallman, et al.
44 @author last updated @value{lastupdate}
45 @page
46 @vskip 0pt plus 1filll
47 @insertcopying
48 @end titlepage
49
50 @contents
51
52 @ifnottex
53 @node Top
54 @top GNU Coding Standards
55
56 @insertcopying
57 @end ifnottex
58
59 @menu
60 * Preface::                     About the GNU Coding Standards.
61 * Legal Issues::                Keeping free software free.
62 * Design Advice::               General program design.
63 * Program Behavior::            Program behavior for all programs
64 * Writing C::                   Making the best use of C.
65 * Documentation::               Documenting programs.
66 * Managing Releases::           The release process.
67 * References::                  Mentioning non-free software or documentation.
68 * GNU Free Documentation License::  Copying and sharing this manual.
69 * Index::
70
71 @end menu
72
73 @node Preface
74 @chapter About the GNU Coding Standards
75
76 The GNU Coding Standards were written by Richard Stallman and other GNU
77 Project volunteers.  Their purpose is to make the GNU system clean,
78 consistent, and easy to install.  This document can also be read as a
79 guide to writing portable, robust and reliable programs.  It focuses on
80 programs written in C, but many of the rules and principles are useful
81 even if you write in another programming language.  The rules often
82 state reasons for writing in a certain way.
83
84 @cindex where to obtain @code{standards.texi}
85 @cindex downloading this manual
86 If you did not obtain this file directly from the GNU project and
87 recently, please check for a newer version.  You can get the GNU
88 Coding Standards from the GNU web server in many
89 different formats, including the Texinfo source, PDF, HTML, DVI, plain
90 text, and more, at: @uref{http://www.gnu.org/prep/standards/}.
91
92 If you are maintaining an official GNU package, in addition to this
93 document, please read and follow the GNU maintainer information
94 (@pxref{Top, , Contents, maintain, Information for Maintainers of GNU
95 Software}).
96
97 @cindex @code{gnustandards-commit@@gnu.org} mailing list
98 If you want to receive diffs for every change to these GNU documents,
99 join the mailing list @code{gnustandards-commit@@gnu.org}, via the web
100 interface at
101 @url{http://lists.gnu.org/mailman/listinfo/gnustandards-commit}.
102 Archives are also available there.
103
104 @cindex @code{bug-standards@@gnu.org} email address
105 @cindex Savannah repository for gnustandards
106 @cindex gnustandards project repository
107 Please send corrections or suggestions for this document to
108 @email{bug-standards@@gnu.org}.  If you make a suggestion, please
109 include a suggested new wording for it, to help us consider the
110 suggestion efficiently.  We prefer a context diff to the Texinfo
111 source, but if that's difficult for you, you can make a context diff
112 for some other version of this document, or propose it in any way that
113 makes it clear.  The source repository for this document can be found
114 at @url{http://savannah.gnu.org/projects/gnustandards}.
115
116 These standards cover the minimum of what is important when writing a
117 GNU package.  Likely, the need for additional standards will come up.
118 Sometimes, you might suggest that such standards be added to this
119 document.  If you think your standards would be generally useful, please
120 do suggest them.
121
122 You should also set standards for your package on many questions not
123 addressed or not firmly specified here.  The most important point is to
124 be self-consistent---try to stick to the conventions you pick, and try
125 to document them as much as possible.  That way, your program will be
126 more maintainable by others.
127
128 The GNU Hello program serves as an example of how to follow the GNU
129 coding standards for a trivial program.
130 @uref{http://www.gnu.org/software/hello/hello.html}.
131
132 This release of the GNU Coding Standards was last updated
133 @value{lastupdate}.
134
135
136 @node Legal Issues
137 @chapter Keeping Free Software Free
138 @cindex legal aspects
139
140 This chapter discusses how you can make sure that GNU software
141 avoids legal difficulties, and other related issues.
142
143 @menu
144 * Reading Non-Free Code::       Referring to proprietary programs.
145 * Contributions::               Accepting contributions.
146 * Trademarks::                  How we deal with trademark issues.
147 @end menu
148
149 @node Reading Non-Free Code
150 @section Referring to Proprietary Programs
151 @cindex proprietary programs
152 @cindex avoiding proprietary code
153
154 Don't in any circumstances refer to Unix source code for or during
155 your work on GNU!  (Or to any other proprietary programs.)
156
157 If you have a vague recollection of the internals of a Unix program,
158 this does not absolutely mean you can't write an imitation of it, but
159 do try to organize the imitation internally along different lines,
160 because this is likely to make the details of the Unix version
161 irrelevant and dissimilar to your results.
162
163 For example, Unix utilities were generally optimized to minimize
164 memory use; if you go for speed instead, your program will be very
165 different.  You could keep the entire input file in memory and scan it
166 there instead of using stdio.  Use a smarter algorithm discovered more
167 recently than the Unix program.  Eliminate use of temporary files.  Do
168 it in one pass instead of two (we did this in the assembler).
169
170 Or, on the contrary, emphasize simplicity instead of speed.  For some
171 applications, the speed of today's computers makes simpler algorithms
172 adequate.
173
174 Or go for generality.  For example, Unix programs often have static
175 tables or fixed-size strings, which make for arbitrary limits; use
176 dynamic allocation instead.  Make sure your program handles NULs and
177 other funny characters in the input files.  Add a programming language
178 for extensibility and write part of the program in that language.
179
180 Or turn some parts of the program into independently usable libraries.
181 Or use a simple garbage collector instead of tracking precisely when
182 to free memory, or use a new GNU facility such as obstacks.
183
184 @node Contributions
185 @section Accepting Contributions
186 @cindex legal papers
187 @cindex accepting contributions
188
189 If the program you are working on is copyrighted by the Free Software
190 Foundation, then when someone else sends you a piece of code to add to
191 the program, we need legal papers to use it---just as we asked you to
192 sign papers initially.  @emph{Each} person who makes a nontrivial
193 contribution to a program must sign some sort of legal papers in order
194 for us to have clear title to the program; the main author alone is not
195 enough.
196
197 So, before adding in any contributions from other people, please tell
198 us, so we can arrange to get the papers.  Then wait until we tell you
199 that we have received the signed papers, before you actually use the
200 contribution.
201
202 This applies both before you release the program and afterward.  If
203 you receive diffs to fix a bug, and they make significant changes, we
204 need legal papers for that change.
205
206 This also applies to comments and documentation files.  For copyright
207 law, comments and code are just text.  Copyright applies to all kinds of
208 text, so we need legal papers for all kinds.
209
210 We know it is frustrating to ask for legal papers; it's frustrating for
211 us as well.  But if you don't wait, you are going out on a limb---for
212 example, what if the contributor's employer won't sign a disclaimer?
213 You might have to take that code out again!
214
215 You don't need papers for changes of a few lines here or there, since
216 they are not significant for copyright purposes.  Also, you don't need
217 papers if all you get from the suggestion is some ideas, not actual code
218 which you use.  For example, if someone sent you one implementation, but
219 you write a different implementation of the same idea, you don't need to
220 get papers.
221
222 The very worst thing is if you forget to tell us about the other
223 contributor.  We could be very embarrassed in court some day as a
224 result.
225
226 We have more detailed advice for maintainers of programs; if you have
227 reached the stage of actually maintaining a program for GNU (whether
228 released or not), please ask us for a copy.  It is also available
229 online for your perusal: @uref{http://www.gnu.org/prep/maintain/}.
230
231 @node Trademarks
232 @section Trademarks
233 @cindex trademarks
234
235 Please do not include any trademark acknowledgements in GNU software
236 packages or documentation.
237
238 Trademark acknowledgements are the statements that such-and-such is a
239 trademark of so-and-so.  The GNU Project has no objection to the basic
240 idea of trademarks, but these acknowledgements feel like kowtowing,
241 and there is no legal requirement for them, so we don't use them.
242
243 What is legally required, as regards other people's trademarks, is to
244 avoid using them in ways which a reader might reasonably understand as
245 naming or labeling our own programs or activities.  For example, since
246 ``Objective C'' is (or at least was) a trademark, we made sure to say
247 that we provide a ``compiler for the Objective C language'' rather
248 than an ``Objective C compiler''.  The latter would have been meant as
249 a shorter way of saying the former, but it does not explicitly state
250 the relationship, so it could be misinterpreted as using ``Objective
251 C'' as a label for the compiler rather than for the language.
252
253 Please don't use ``win'' as an abbreviation for Microsoft Windows in
254 GNU software or documentation.  In hacker terminology, calling
255 something a ``win'' is a form of praise.  If you wish to praise
256 Microsoft Windows when speaking on your own, by all means do so, but
257 not in GNU software.  Usually we write the name ``Windows'' in full,
258 but when brevity is very important (as in file names and sometimes
259 symbol names), we abbreviate it to ``w''.  For instance, the files and
260 functions in Emacs that deal with Windows start with @samp{w32}.
261
262 @node Design Advice
263 @chapter General Program Design
264 @cindex program design
265
266 This chapter discusses some of the issues you should take into
267 account when designing your program.
268
269 @c                         Standard or ANSI C
270 @c
271 @c In 1989 the American National Standards Institute (ANSI) standardized
272 @c C   as  standard  X3.159-1989.    In  December   of  that   year  the
273 @c International Standards Organization ISO  adopted the ANSI C standard
274 @c making  minor changes.   In 1990  ANSI then  re-adopted  ISO standard
275 @c C. This version of C is known as either ANSI C or Standard C.
276
277 @c A major revision of the C Standard appeared in 1999.
278
279 @menu
280 * Source Language::             Which languages to use.
281 * Compatibility::               Compatibility with other implementations.
282 * Using Extensions::            Using non-standard features.
283 * Standard C::                  Using standard C features.
284 * Conditional Compilation::     Compiling code only if a conditional is true.
285 @end menu
286
287 @node Source Language
288 @section Which Languages to Use
289 @cindex programming languages
290
291 When you want to use a language that gets compiled and runs at high
292 speed, the best language to use is C.  Using another language is like
293 using a non-standard feature: it will cause trouble for users.  Even if
294 GCC supports the other language, users may find it inconvenient to have
295 to install the compiler for that other language in order to build your
296 program.  For example, if you write your program in C++, people will
297 have to install the GNU C++ compiler in order to compile your program.
298
299 C has one other advantage over C++ and other compiled languages: more
300 people know C, so more people will find it easy to read and modify the
301 program if it is written in C.
302
303 So in general it is much better to use C, rather than the
304 comparable alternatives.
305
306 But there are two exceptions to that conclusion:
307
308 @itemize @bullet
309 @item
310 It is no problem to use another language to write a tool specifically
311 intended for use with that language.  That is because the only people
312 who want to build the tool will be those who have installed the other
313 language anyway.
314
315 @item
316 If an application is of interest only to a narrow part of the community,
317 then the question of which language it is written in has less effect on
318 other people, so you may as well please yourself.
319 @end itemize
320
321 Many programs are designed to be extensible: they include an interpreter
322 for a language that is higher level than C.  Often much of the program
323 is written in that language, too.  The Emacs editor pioneered this
324 technique.
325
326 @cindex Guile
327 @cindex GNOME and Guile
328 The standard extensibility interpreter for GNU software is Guile
329 (@uref{http://www.gnu.org/@/software/@/guile/}), which implements the
330 language Scheme (an especially clean and simple dialect of Lisp).
331 Guile also includes bindings for GTK+/GNOME, making it practical to
332 write modern GUI functionality within Guile.  We don't reject programs
333 written in other ``scripting languages'' such as Perl and Python, but
334 using Guile is very important for the overall consistency of the GNU
335 system.
336
337
338 @node Compatibility
339 @section Compatibility with Other Implementations
340 @cindex compatibility with C and @sc{posix} standards
341 @cindex @sc{posix} compatibility
342
343 With occasional exceptions, utility programs and libraries for GNU
344 should be upward compatible with those in Berkeley Unix, and upward
345 compatible with Standard C if Standard C specifies their
346 behavior, and upward compatible with @sc{posix} if @sc{posix} specifies
347 their behavior.
348
349 When these standards conflict, it is useful to offer compatibility
350 modes for each of them.
351
352 @cindex options for compatibility
353 Standard C and @sc{posix} prohibit many kinds of extensions.  Feel
354 free to make the extensions anyway, and include a @samp{--ansi},
355 @samp{--posix}, or @samp{--compatible} option to turn them off.
356 However, if the extension has a significant chance of breaking any real
357 programs or scripts, then it is not really upward compatible.  So you
358 should try to redesign its interface to make it upward compatible.
359
360 @cindex @code{POSIXLY_CORRECT}, environment variable
361 Many GNU programs suppress extensions that conflict with @sc{posix} if the
362 environment variable @code{POSIXLY_CORRECT} is defined (even if it is
363 defined with a null value).  Please make your program recognize this
364 variable if appropriate.
365
366 When a feature is used only by users (not by programs or command
367 files), and it is done poorly in Unix, feel free to replace it
368 completely with something totally different and better.  (For example,
369 @code{vi} is replaced with Emacs.)  But it is nice to offer a compatible
370 feature as well.  (There is a free @code{vi} clone, so we offer it.)
371
372 Additional useful features are welcome regardless of whether
373 there is any precedent for them.
374
375 @node Using Extensions
376 @section Using Non-standard Features
377 @cindex non-standard extensions
378
379 Many GNU facilities that already exist support a number of convenient
380 extensions over the comparable Unix facilities.  Whether to use these
381 extensions in implementing your program is a difficult question.
382
383 On the one hand, using the extensions can make a cleaner program.
384 On the other hand, people will not be able to build the program
385 unless the other GNU tools are available.  This might cause the
386 program to work on fewer kinds of machines.
387
388 With some extensions, it might be easy to provide both alternatives.
389 For example, you can define functions with a ``keyword'' @code{INLINE}
390 and define that as a macro to expand into either @code{inline} or
391 nothing, depending on the compiler.
392
393 In general, perhaps it is best not to use the extensions if you can
394 straightforwardly do without them, but to use the extensions if they
395 are a big improvement.
396
397 An exception to this rule are the large, established programs (such as
398 Emacs) which run on a great variety of systems.  Using GNU extensions in
399 such programs would make many users unhappy, so we don't do that.
400
401 Another exception is for programs that are used as part of compilation:
402 anything that must be compiled with other compilers in order to
403 bootstrap the GNU compilation facilities.  If these require the GNU
404 compiler, then no one can compile them without having them installed
405 already.  That would be extremely troublesome in certain cases.
406
407 @node Standard C
408 @section Standard C and Pre-Standard C
409 @cindex @sc{ansi} C standard
410
411 1989 Standard C is widespread enough now that it is ok to use its
412 features in new programs.  There is one exception: do not ever use the
413 ``trigraph'' feature of Standard C.
414
415 1999 Standard C is not widespread yet, so please do not require its
416 features in programs.  It is ok to use its features if they are present.
417
418 However, it is easy to support pre-standard compilers in most programs,
419 so if you know how to do that, feel free.  If a program you are
420 maintaining has such support, you should try to keep it working.
421
422 @cindex function prototypes
423 To support pre-standard C, instead of writing function definitions in
424 standard prototype form,
425
426 @example
427 int
428 foo (int x, int y)
429 @dots{}
430 @end example
431
432 @noindent
433 write the definition in pre-standard style like this,
434
435 @example
436 int
437 foo (x, y)
438      int x, y;
439 @dots{}
440 @end example
441
442 @noindent
443 and use a separate declaration to specify the argument prototype:
444
445 @example
446 int foo (int, int);
447 @end example
448
449 You need such a declaration anyway, in a header file, to get the benefit
450 of prototypes in all the files where the function is called.  And once
451 you have the declaration, you normally lose nothing by writing the
452 function definition in the pre-standard style.
453
454 This technique does not work for integer types narrower than @code{int}.
455 If you think of an argument as being of a type narrower than @code{int},
456 declare it as @code{int} instead.
457
458 There are a few special cases where this technique is hard to use.  For
459 example, if a function argument needs to hold the system type
460 @code{dev_t}, you run into trouble, because @code{dev_t} is shorter than
461 @code{int} on some machines; but you cannot use @code{int} instead,
462 because @code{dev_t} is wider than @code{int} on some machines.  There
463 is no type you can safely use on all machines in a non-standard
464 definition.  The only way to support non-standard C and pass such an
465 argument is to check the width of @code{dev_t} using Autoconf and choose
466 the argument type accordingly.  This may not be worth the trouble.
467
468 In order to support pre-standard compilers that do not recognize
469 prototypes, you may want to use a preprocessor macro like this:
470
471 @example
472 /* Declare the prototype for a general external function.  */
473 #if defined (__STDC__) || defined (WINDOWSNT)
474 #define P_(proto) proto
475 #else
476 #define P_(proto) ()
477 #endif
478 @end example
479
480 @node Conditional Compilation
481 @section Conditional Compilation
482
483 When supporting configuration options already known when building your
484 program we prefer using @code{if (... )} over conditional compilation,
485 as in the former case the compiler is able to perform more extensive
486 checking of all possible code paths.
487
488 For example, please write
489
490 @smallexample
491   if (HAS_FOO)
492     ...
493   else
494     ...
495 @end smallexample
496
497 @noindent
498 instead of:
499
500 @smallexample
501   #ifdef HAS_FOO
502     ...
503   #else
504     ...
505   #endif
506 @end smallexample
507
508 A modern compiler such as GCC will generate exactly the same code in
509 both cases, and we have been using similar techniques with good success
510 in several projects.  Of course, the former method assumes that
511 @code{HAS_FOO} is defined as either 0 or 1.
512
513 While this is not a silver bullet solving all portability problems,
514 and is not always appropriate, following this policy would have saved
515 GCC developers many hours, or even days, per year.
516
517 In the case of function-like macros like @code{REVERSIBLE_CC_MODE} in
518 GCC which cannot be simply used in @code{if (...)} statements, there is
519 an easy workaround.  Simply introduce another macro
520 @code{HAS_REVERSIBLE_CC_MODE} as in the following example:
521
522 @smallexample
523   #ifdef REVERSIBLE_CC_MODE
524   #define HAS_REVERSIBLE_CC_MODE 1
525   #else
526   #define HAS_REVERSIBLE_CC_MODE 0
527   #endif
528 @end smallexample
529
530 @node Program Behavior
531 @chapter Program Behavior for All Programs
532
533 This chapter describes conventions for writing robust
534 software.  It also describes general standards for error messages, the
535 command line interface, and how libraries should behave.
536
537 @menu
538 * Non-GNU Standards::           We consider standards such as POSIX;
539                                   we don't "obey" them.
540 * Semantics::                   Writing robust programs.
541 * Libraries::                   Library behavior.
542 * Errors::                      Formatting error messages.
543 * User Interfaces::             Standards about interfaces generally.
544 * Graphical Interfaces::        Standards for graphical interfaces.
545 * Command-Line Interfaces::     Standards for command line interfaces.
546 * Dynamic Plug-In Interfaces::  Standards for dynamic plug-in interfaces.
547 * Option Table::                Table of long options.
548 * OID Allocations::             Table of OID slots for GNU.
549 * Memory Usage::                When and how to care about memory needs.
550 * File Usage::                  Which files to use, and where.
551 @end menu
552
553 @node Non-GNU Standards
554 @section Non-GNU Standards
555
556 The GNU Project regards standards published by other organizations as
557 suggestions, not orders.  We consider those standards, but we do not
558 ``obey'' them.  In developing a GNU program, you should implement
559 an outside standard's specifications when that makes the GNU system
560 better overall in an objective sense.  When it doesn't, you shouldn't.
561
562 In most cases, following published standards is convenient for
563 users---it means that their programs or scripts will work more
564 portably.  For instance, GCC implements nearly all the features of
565 Standard C as specified by that standard.  C program developers would
566 be unhappy if it did not.  And GNU utilities mostly follow
567 specifications of POSIX.2; shell script writers and users would be
568 unhappy if our programs were incompatible.
569
570 But we do not follow either of these specifications rigidly, and there
571 are specific points on which we decided not to follow them, so as to
572 make the GNU system better for users.
573
574 For instance, Standard C says that nearly all extensions to C are
575 prohibited.  How silly!  GCC implements many extensions, some of which
576 were later adopted as part of the standard.  If you want these
577 constructs to give an error message as ``required'' by the standard,
578 you must specify @samp{--pedantic}, which was implemented only so that
579 we can say ``GCC is a 100% implementation of the standard,'' not
580 because there is any reason to actually use it.
581
582 POSIX.2 specifies that @samp{df} and @samp{du} must output sizes by
583 default in units of 512 bytes.  What users want is units of 1k, so
584 that is what we do by default.  If you want the ridiculous behavior
585 ``required'' by POSIX, you must set the environment variable
586 @samp{POSIXLY_CORRECT} (which was originally going to be named
587 @samp{POSIX_ME_HARDER}).
588
589 GNU utilities also depart from the letter of the POSIX.2 specification
590 when they support long-named command-line options, and intermixing
591 options with ordinary arguments.  This minor incompatibility with
592 POSIX is never a problem in practice, and it is very useful.
593
594 In particular, don't reject a new feature, or remove an old one,
595 merely because a standard says it is ``forbidden'' or ``deprecated.''
596
597 @node Semantics
598 @section Writing Robust Programs
599
600 @cindex arbitrary limits on data
601 Avoid arbitrary limits on the length or number of @emph{any} data
602 structure, including file names, lines, files, and symbols, by allocating
603 all data structures dynamically.  In most Unix utilities, ``long lines
604 are silently truncated''.  This is not acceptable in a GNU utility.
605
606 @cindex @code{NUL} characters
607 Utilities reading files should not drop NUL characters, or any other
608 nonprinting characters @emph{including those with codes above 0177}.
609 The only sensible exceptions would be utilities specifically intended
610 for interface to certain types of terminals or printers
611 that can't handle those characters.
612 Whenever possible, try to make programs work properly with
613 sequences of bytes that represent multibyte characters, using encodings
614 such as UTF-8 and others.
615
616 @cindex error messages
617 Check every system call for an error return, unless you know you wish to
618 ignore errors.  Include the system error text (from @code{perror} or
619 equivalent) in @emph{every} error message resulting from a failing
620 system call, as well as the name of the file if any and the name of the
621 utility.  Just ``cannot open foo.c'' or ``stat failed'' is not
622 sufficient.
623
624 @cindex @code{malloc} return value
625 @cindex memory allocation failure
626 Check every call to @code{malloc} or @code{realloc} to see if it
627 returned zero.  Check @code{realloc} even if you are making the block
628 smaller; in a system that rounds block sizes to a power of 2,
629 @code{realloc} may get a different block if you ask for less space.
630
631 In Unix, @code{realloc} can destroy the storage block if it returns
632 zero.  GNU @code{realloc} does not have this bug: if it fails, the
633 original block is unchanged.  Feel free to assume the bug is fixed.  If
634 you wish to run your program on Unix, and wish to avoid lossage in this
635 case, you can use the GNU @code{malloc}.
636
637 You must expect @code{free} to alter the contents of the block that was
638 freed.  Anything you want to fetch from the block, you must fetch before
639 calling @code{free}.
640
641 If @code{malloc} fails in a noninteractive program, make that a fatal
642 error.  In an interactive program (one that reads commands from the
643 user), it is better to abort the command and return to the command
644 reader loop.  This allows the user to kill other processes to free up
645 virtual memory, and then try the command again.
646
647 @cindex command-line arguments, decoding
648 Use @code{getopt_long} to decode arguments, unless the argument syntax
649 makes this unreasonable.
650
651 When static storage is to be written in during program execution, use
652 explicit C code to initialize it.  Reserve C initialized declarations
653 for data that will not be changed.
654 @c ADR: why?
655
656 Try to avoid low-level interfaces to obscure Unix data structures (such
657 as file directories, utmp, or the layout of kernel memory), since these
658 are less likely to work compatibly.  If you need to find all the files
659 in a directory, use @code{readdir} or some other high-level interface.
660 These are supported compatibly by GNU.
661
662 @cindex signal handling
663 The preferred signal handling facilities are the BSD variant of
664 @code{signal}, and the @sc{posix} @code{sigaction} function; the
665 alternative USG @code{signal} interface is an inferior design.
666
667 Nowadays, using the @sc{posix} signal functions may be the easiest way
668 to make a program portable.  If you use @code{signal}, then on GNU/Linux
669 systems running GNU libc version 1, you should include
670 @file{bsd/signal.h} instead of @file{signal.h}, so as to get BSD
671 behavior.  It is up to you whether to support systems where
672 @code{signal} has only the USG behavior, or give up on them.
673
674 @cindex impossible conditions
675 In error checks that detect ``impossible'' conditions, just abort.
676 There is usually no point in printing any message.  These checks
677 indicate the existence of bugs.  Whoever wants to fix the bugs will have
678 to read the source code and run a debugger.  So explain the problem with
679 comments in the source.  The relevant data will be in variables, which
680 are easy to examine with the debugger, so there is no point moving them
681 elsewhere.
682
683 Do not use a count of errors as the exit status for a program.
684 @emph{That does not work}, because exit status values are limited to 8
685 bits (0 through 255).  A single run of the program might have 256
686 errors; if you try to return 256 as the exit status, the parent process
687 will see 0 as the status, and it will appear that the program succeeded.
688
689 @cindex temporary files
690 @cindex @code{TMPDIR} environment variable
691 If you make temporary files, check the @code{TMPDIR} environment
692 variable; if that variable is defined, use the specified directory
693 instead of @file{/tmp}.
694
695 In addition, be aware that there is a possible security problem when
696 creating temporary files in world-writable directories.  In C, you can
697 avoid this problem by creating temporary files in this manner:
698
699 @example
700 fd = open (filename, O_WRONLY | O_CREAT | O_EXCL, 0600);
701 @end example
702
703 @noindent
704 or by using the @code{mkstemps} function from Gnulib
705 (@pxref{mkstemps,,, gnulib, Gnulib}).
706
707 In bash, use @code{set -C} (long name @code{noclobber}) to avoid this
708 problem.  In addition, the @code{mktemp} utility is a more general
709 solution for creating temporary files from shell scripts
710 (@pxref{mktemp invocation,,, coreutils, GNU Coreutils}).
711
712
713 @node Libraries
714 @section Library Behavior
715 @cindex libraries
716
717 Try to make library functions reentrant.  If they need to do dynamic
718 storage allocation, at least try to avoid any nonreentrancy aside from
719 that of @code{malloc} itself.
720
721 Here are certain name conventions for libraries, to avoid name
722 conflicts.
723
724 Choose a name prefix for the library, more than two characters long.
725 All external function and variable names should start with this
726 prefix.  In addition, there should only be one of these in any given
727 library member.  This usually means putting each one in a separate
728 source file.
729
730 An exception can be made when two external symbols are always used
731 together, so that no reasonable program could use one without the
732 other; then they can both go in the same file.
733
734 External symbols that are not documented entry points for the user
735 should have names beginning with @samp{_}.  The @samp{_} should be
736 followed by the chosen name prefix for the library, to prevent
737 collisions with other libraries.  These can go in the same files with
738 user entry points if you like.
739
740 Static functions and variables can be used as you like and need not
741 fit any naming convention.
742
743 @node Errors
744 @section Formatting Error Messages
745 @cindex formatting error messages
746 @cindex error messages, formatting
747
748 Error messages from compilers should look like this:
749
750 @example
751 @var{source-file-name}:@var{lineno}: @var{message}
752 @end example
753
754 @noindent
755 If you want to mention the column number, use one of these formats:
756
757 @example
758 @var{source-file-name}:@var{lineno}:@var{column}: @var{message}
759 @var{source-file-name}:@var{lineno}.@var{column}: @var{message}
760
761 @end example
762
763 @noindent
764 Line numbers should start from 1 at the beginning of the file, and
765 column numbers should start from 1 at the beginning of the line.  (Both
766 of these conventions are chosen for compatibility.)  Calculate column
767 numbers assuming that space and all ASCII printing characters have
768 equal width, and assuming tab stops every 8 columns.
769
770 The error message can also give both the starting and ending positions
771 of the erroneous text.  There are several formats so that you can
772 avoid redundant information such as a duplicate line number.
773 Here are the possible formats:
774
775 @example
776 @var{source-file-name}:@var{lineno-1}.@var{column-1}-@var{lineno-2}.@var{column-2}: @var{message}
777 @var{source-file-name}:@var{lineno-1}.@var{column-1}-@var{column-2}: @var{message}
778 @var{source-file-name}:@var{lineno-1}-@var{lineno-2}: @var{message}
779 @end example
780
781 @noindent
782 When an error is spread over several files, you can use this format:
783
784 @example
785 @var{file-1}:@var{lineno-1}.@var{column-1}-@var{file-2}:@var{lineno-2}.@var{column-2}: @var{message}
786 @end example
787
788 Error messages from other noninteractive programs should look like this:
789
790 @example
791 @var{program}:@var{source-file-name}:@var{lineno}: @var{message}
792 @end example
793
794 @noindent
795 when there is an appropriate source file, or like this:
796
797 @example
798 @var{program}: @var{message}
799 @end example
800
801 @noindent
802 when there is no relevant source file.
803
804 If you want to mention the column number, use this format:
805
806 @example
807 @var{program}:@var{source-file-name}:@var{lineno}:@var{column}: @var{message}
808 @end example
809
810 In an interactive program (one that is reading commands from a
811 terminal), it is better not to include the program name in an error
812 message.  The place to indicate which program is running is in the
813 prompt or with the screen layout.  (When the same program runs with
814 input from a source other than a terminal, it is not interactive and
815 would do best to print error messages using the noninteractive style.)
816
817 The string @var{message} should not begin with a capital letter when
818 it follows a program name and/or file name, because that isn't the
819 beginning of a sentence.  (The sentence conceptually starts at the
820 beginning of the line.)  Also, it should not end with a period.
821
822 Error messages from interactive programs, and other messages such as
823 usage messages, should start with a capital letter.  But they should not
824 end with a period.
825
826 @node User Interfaces
827 @section Standards for Interfaces Generally
828
829 @cindex program name and its behavior
830 @cindex behavior, dependent on program's name
831 Please don't make the behavior of a utility depend on the name used
832 to invoke it.  It is useful sometimes to make a link to a utility
833 with a different name, and that should not change what it does.
834
835 Instead, use a run time option or a compilation switch or both
836 to select among the alternate behaviors.
837
838 @cindex output device and program's behavior
839 Likewise, please don't make the behavior of the program depend on the
840 type of output device it is used with.  Device independence is an
841 important principle of the system's design; do not compromise it merely
842 to save someone from typing an option now and then.  (Variation in error
843 message syntax when using a terminal is ok, because that is a side issue
844 that people do not depend on.)
845
846 If you think one behavior is most useful when the output is to a
847 terminal, and another is most useful when the output is a file or a
848 pipe, then it is usually best to make the default behavior the one that
849 is useful with output to a terminal, and have an option for the other
850 behavior.
851
852 Compatibility requires certain programs to depend on the type of output
853 device.  It would be disastrous if @code{ls} or @code{sh} did not do so
854 in the way all users expect.  In some of these cases, we supplement the
855 program with a preferred alternate version that does not depend on the
856 output device type.  For example, we provide a @code{dir} program much
857 like @code{ls} except that its default output format is always
858 multi-column format.
859
860
861 @node Graphical Interfaces
862 @section Standards for Graphical Interfaces
863 @cindex graphical user interface
864 @cindex interface styles
865 @cindex user interface styles
866
867 @cindex GTK+
868 When you write a program that provides a graphical user interface,
869 please make it work with the X Window System and the GTK+ toolkit
870 unless the functionality specifically requires some alternative (for
871 example, ``displaying jpeg images while in console mode'').
872
873 In addition, please provide a command-line interface to control the
874 functionality.  (In many cases, the graphical user interface can be a
875 separate program which invokes the command-line program.)  This is
876 so that the same jobs can be done from scripts.
877
878 @cindex CORBA
879 @cindex GNOME
880 @cindex D-bus
881 @cindex keyboard interface
882 @cindex library interface
883 Please also consider providing a D-bus interface for use from other
884 running programs, such as within GNOME.  (GNOME used to use CORBA
885 for this, but that is being phased out.)  In addition, consider
886 providing a library interface (for use from C), and perhaps a
887 keyboard-driven console interface (for use by users from console
888 mode).  Once you are doing the work to provide the functionality and
889 the graphical interface, these won't be much extra work.
890
891
892 @node Command-Line Interfaces
893 @section Standards for Command Line Interfaces
894 @cindex command-line interface
895
896 @findex getopt
897 It is a good idea to follow the @sc{posix} guidelines for the
898 command-line options of a program.  The easiest way to do this is to use
899 @code{getopt} to parse them.  Note that the GNU version of @code{getopt}
900 will normally permit options anywhere among the arguments unless the
901 special argument @samp{--} is used.  This is not what @sc{posix}
902 specifies; it is a GNU extension.
903
904 @cindex long-named options
905 Please define long-named options that are equivalent to the
906 single-letter Unix-style options.  We hope to make GNU more user
907 friendly this way.  This is easy to do with the GNU function
908 @code{getopt_long}.
909
910 One of the advantages of long-named options is that they can be
911 consistent from program to program.  For example, users should be able
912 to expect the ``verbose'' option of any GNU program which has one, to be
913 spelled precisely @samp{--verbose}.  To achieve this uniformity, look at
914 the table of common long-option names when you choose the option names
915 for your program (@pxref{Option Table}).
916
917 It is usually a good idea for file names given as ordinary arguments to
918 be input files only; any output files would be specified using options
919 (preferably @samp{-o} or @samp{--output}).  Even if you allow an output
920 file name as an ordinary argument for compatibility, try to provide an
921 option as another way to specify it.  This will lead to more consistency
922 among GNU utilities, and fewer idiosyncrasies for users to remember.
923
924 @cindex standard command-line options
925 @cindex options, standard command-line
926 @cindex CGI programs, standard options for
927 @cindex PATH_INFO, specifying standard options as
928 All programs should support two standard options: @samp{--version}
929 and @samp{--help}.  CGI programs should accept these as command-line
930 options, and also if given as the @env{PATH_INFO}; for instance,
931 visiting @url{http://example.org/p.cgi/--help} in a browser should
932 output the same information as invoking @samp{p.cgi --help} from the
933 command line.
934
935 @menu
936 * --version::       The standard output for --version.
937 * --help::          The standard output for --help.
938 @end menu
939
940 @node --version
941 @subsection @option{--version}
942
943 @cindex @samp{--version} output
944
945 The standard @code{--version} option should direct the program to
946 print information about its name, version, origin and legal status,
947 all on standard output, and then exit successfully.  Other options and
948 arguments should be ignored once this is seen, and the program should
949 not perform its normal function.
950
951 @cindex canonical name of a program
952 @cindex program's canonical name
953 The first line is meant to be easy for a program to parse; the version
954 number proper starts after the last space.  In addition, it contains
955 the canonical name for this program, in this format:
956
957 @example
958 GNU Emacs 19.30
959 @end example
960
961 @noindent
962 The program's name should be a constant string; @emph{don't} compute it
963 from @code{argv[0]}.  The idea is to state the standard or canonical
964 name for the program, not its file name.  There are other ways to find
965 out the precise file name where a command is found in @code{PATH}.
966
967 If the program is a subsidiary part of a larger package, mention the
968 package name in parentheses, like this:
969
970 @example
971 emacsserver (GNU Emacs) 19.30
972 @end example
973
974 @noindent
975 If the package has a version number which is different from this
976 program's version number, you can mention the package version number
977 just before the close-parenthesis.
978
979 If you @emph{need} to mention the version numbers of libraries which
980 are distributed separately from the package which contains this program,
981 you can do so by printing an additional line of version info for each
982 library you want to mention.  Use the same format for these lines as for
983 the first line.
984
985 Please do not mention all of the libraries that the program uses ``just
986 for completeness''---that would produce a lot of unhelpful clutter.
987 Please mention library version numbers only if you find in practice that
988 they are very important to you in debugging.
989
990 The following line, after the version number line or lines, should be a
991 copyright notice.  If more than one copyright notice is called for, put
992 each on a separate line.
993
994 Next should follow a line stating the license, preferably using one of
995 abbrevations below, and a brief statement that the program is free
996 software, and that users are free to copy and change it.  Also mention
997 that there is no warranty, to the extent permitted by law.  See
998 recommended wording below.
999
1000 It is ok to finish the output with a list of the major authors of the
1001 program, as a way of giving credit.
1002
1003 Here's an example of output that follows these rules:
1004
1005 @smallexample
1006 GNU hello 2.3
1007 Copyright (C) 2007 Free Software Foundation, Inc.
1008 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
1009 This is free software: you are free to change and redistribute it.
1010 There is NO WARRANTY, to the extent permitted by law.
1011 @end smallexample
1012
1013 You should adapt this to your program, of course, filling in the proper
1014 year, copyright holder, name of program, and the references to
1015 distribution terms, and changing the rest of the wording as necessary.
1016
1017 This copyright notice only needs to mention the most recent year in
1018 which changes were made---there's no need to list the years for previous
1019 versions' changes.  You don't have to mention the name of the program in
1020 these notices, if that is inconvenient, since it appeared in the first
1021 line.  (The rules are different for copyright notices in source files;
1022 @pxref{Copyright Notices,,,maintain,Information for GNU Maintainers}.)
1023
1024 Translations of the above lines must preserve the validity of the
1025 copyright notices (@pxref{Internationalization}).  If the translation's
1026 character set supports it, the @samp{(C)} should be replaced with the
1027 copyright symbol, as follows:
1028
1029 @ifinfo
1030 (the official copyright symbol, which is the letter C in a circle);
1031 @end ifinfo
1032 @ifnotinfo
1033 @copyright{}
1034 @end ifnotinfo
1035
1036 Write the word ``Copyright'' exactly like that, in English.  Do not
1037 translate it into another language.  International treaties recognize
1038 the English word ``Copyright''; translations into other languages do not
1039 have legal significance.
1040
1041 Finally, here is the table of our suggested license abbreviations.
1042 Any abbreviation can be followed by @samp{v@var{version}[+]}, meaning
1043 that particular version, or later versions with the @samp{+}, as shown
1044 above.
1045
1046 In the case of exceptions for extra permissions with the GPL, we use
1047 @samp{/} for a separator; the version number can follow the license
1048 abbreviation as usual, as in the examples below.
1049
1050 @table @asis
1051 @item GPL
1052 GNU General Public License, @url{http://www.gnu.org/@/licenses/@/gpl.html}.
1053
1054 @item LGPL
1055 GNU Lesser General Public License, @url{http://www.gnu.org/@/licenses/@/lgpl.html}.
1056
1057 @item GPL/Ada
1058 GNU GPL with the exception for Ada.
1059
1060 @item Apache
1061 The Apache Software Foundation license,
1062 @url{http://www.apache.org/@/licenses}.
1063
1064 @item Artistic
1065 The Artistic license used for Perl, @url{http://www.perlfoundation.org/@/legal}.
1066
1067 @item Expat
1068 The Expat license, @url{http://www.jclark.com/@/xml/@/copying.txt}.
1069
1070 @item MPL
1071 The Mozilla Public License, @url{http://www.mozilla.org/@/MPL/}.
1072
1073 @item OBSD
1074 The original (4-clause) BSD license, incompatible with the GNU GPL
1075 @url{http://www.xfree86.org/@/3.3.6/@/COPYRIGHT2.html#6}.
1076
1077 @item PHP
1078 The license used for PHP, @url{http://www.php.net/@/license/}.
1079
1080 @item public domain
1081 The non-license that is being in the public domain,
1082 @url{http://www.gnu.org/@/licenses/@/license-list.html#PublicDomain}.
1083
1084 @item Python
1085 The license for Python, @url{http://www.python.org/@/2.0.1/@/license.html}.
1086
1087 @item RBSD
1088 The revised (3-clause) BSD, compatible with the GNU GPL,@*
1089 @url{http://www.xfree86.org/@/3.3.6/@/COPYRIGHT2.html#5}.
1090
1091 @item X11
1092 The simple non-copyleft license used for most versions of the X Window
1093 System, @url{http://www.xfree86.org/@/3.3.6/@/COPYRIGHT2.html#3}.
1094
1095 @item Zlib
1096 The license for Zlib, @url{http://www.gzip.org/@/zlib/@/zlib_license.html}.
1097
1098 @end table
1099
1100 More information about these licenses and many more are on the GNU
1101 licensing web pages,
1102 @url{http://www.gnu.org/@/licenses/@/license-list.html}.
1103
1104
1105 @node --help
1106 @subsection @option{--help}
1107
1108 @cindex @samp{--help} output
1109
1110 The standard @code{--help} option should output brief documentation
1111 for how to invoke the program, on standard output, then exit
1112 successfully.  Other options and arguments should be ignored once this
1113 is seen, and the program should not perform its normal function.
1114
1115 @cindex address for bug reports
1116 @cindex bug reports
1117 Near the end of the @samp{--help} option's output, please place lines
1118 giving the email address for bug reports, the package's home page
1119 (normally @indicateurl{http://www.gnu.org/software/@var{pkg}}, and the
1120 general page for help using GNU programs.  The format should be like this:
1121
1122 @example
1123 Report bugs to: @var{mailing-address}
1124 @var{pkg} home page: <http://www.gnu.org/software/@var{pkg}/>
1125 General help using GNU software: <http://www.gnu.org/gethelp/>
1126 @end example
1127
1128 It is ok to mention other appropriate mailing lists and web pages.
1129
1130
1131 @node Dynamic Plug-In Interfaces
1132 @section Standards for Dynamic Plug-in Interfaces
1133 @cindex plug-ins
1134 @cindex dynamic plug-ins
1135
1136 Another aspect of keeping free programs free is encouraging
1137 development of free plug-ins, and discouraging development of
1138 proprietary plug-ins.  Many GNU programs will not have anything like
1139 plug-ins at all, but those that do should follow these
1140 practices.
1141
1142 First, the general plug-in architecture design should closely tie the
1143 plug-in to the original code, such that the plug-in and the base
1144 program are parts of one extended program.  For GCC, for example,
1145 plug-ins receive and modify GCC's internal data structures, and so
1146 clearly form an extended program with the base GCC.
1147
1148 @vindex plugin_is_GPL_compatible
1149 Second, you should require plug-in developers to affirm that their
1150 plug-ins are released under an appropriate license.  This should be
1151 enforced with a simple programmatic check.  For GCC, again for
1152 example, a plug-in must define the global symbol
1153 @code{plugin_is_GPL_compatible}, thus asserting that the plug-in is
1154 released under a GPL-compatible license (@pxref{Plugins,, Plugins,
1155 gccint, GCC Internals}).
1156
1157 By adding this check to your program you are not creating a new legal
1158 requirement.  The GPL itself requires plug-ins to be free software,
1159 licensed compatibly.  As long as you have followed the first rule above
1160 to keep plug-ins closely tied to your original program, the GPL and AGPL
1161 already require those plug-ins to be released under a compatible
1162 license.  The symbol definition in the plug-in---or whatever equivalent
1163 works best in your program---makes it harder for anyone who might
1164 distribute proprietary plug-ins to legally defend themselves.  If a case
1165 about this got to court, we can point to that symbol as evidence that
1166 the plug-in developer understood that the license had this requirement.
1167
1168
1169 @node Option Table
1170 @section Table of Long Options
1171 @cindex long option names
1172 @cindex table of long options
1173
1174 Here is a table of long options used by GNU programs.  It is surely
1175 incomplete, but we aim to list all the options that a new program might
1176 want to be compatible with.  If you use names not already in the table,
1177 please send @email{bug-standards@@gnu.org} a list of them, with their
1178 meanings, so we can update the table.
1179
1180 @c Please leave newlines between items in this table; it's much easier
1181 @c to update when it isn't completely squashed together and unreadable.
1182 @c When there is more than one short option for a long option name, put
1183 @c a semicolon between the lists of the programs that use them, not a
1184 @c period.   --friedman
1185
1186 @table @samp
1187 @item after-date
1188 @samp{-N} in @code{tar}.
1189
1190 @item all
1191 @samp{-a} in @code{du}, @code{ls}, @code{nm}, @code{stty}, @code{uname},
1192 and @code{unexpand}.
1193
1194 @item all-text
1195 @samp{-a} in @code{diff}.
1196
1197 @item almost-all
1198 @samp{-A} in @code{ls}.
1199
1200 @item append
1201 @samp{-a} in @code{etags}, @code{tee}, @code{time};
1202 @samp{-r} in @code{tar}.
1203
1204 @item archive
1205 @samp{-a} in @code{cp}.
1206
1207 @item archive-name
1208 @samp{-n} in @code{shar}.
1209
1210 @item arglength
1211 @samp{-l} in @code{m4}.
1212
1213 @item ascii
1214 @samp{-a} in @code{diff}.
1215
1216 @item assign
1217 @samp{-v} in @code{gawk}.
1218
1219 @item assume-new
1220 @samp{-W} in @code{make}.
1221
1222 @item assume-old
1223 @samp{-o} in @code{make}.
1224
1225 @item auto-check
1226 @samp{-a} in @code{recode}.
1227
1228 @item auto-pager
1229 @samp{-a} in @code{wdiff}.
1230
1231 @item auto-reference
1232 @samp{-A} in @code{ptx}.
1233
1234 @item avoid-wraps
1235 @samp{-n} in @code{wdiff}.
1236
1237 @item background
1238 For server programs, run in the background.
1239
1240 @item backward-search
1241 @samp{-B} in @code{ctags}.
1242
1243 @item basename
1244 @samp{-f} in @code{shar}.
1245
1246 @item batch
1247 Used in GDB.
1248
1249 @item baud
1250 Used in GDB.
1251
1252 @item before
1253 @samp{-b} in @code{tac}.
1254
1255 @item binary
1256 @samp{-b} in @code{cpio} and @code{diff}.
1257
1258 @item bits-per-code
1259 @samp{-b} in @code{shar}.
1260
1261 @item block-size
1262 Used in @code{cpio} and @code{tar}.
1263
1264 @item blocks
1265 @samp{-b} in @code{head} and @code{tail}.
1266
1267 @item break-file
1268 @samp{-b} in @code{ptx}.
1269
1270 @item brief
1271 Used in various programs to make output shorter.
1272
1273 @item bytes
1274 @samp{-c} in @code{head}, @code{split}, and @code{tail}.
1275
1276 @item c@t{++}
1277 @samp{-C} in @code{etags}.
1278
1279 @item catenate
1280 @samp{-A} in @code{tar}.
1281
1282 @item cd
1283 Used in various programs to specify the directory to use.
1284
1285 @item changes
1286 @samp{-c} in @code{chgrp} and @code{chown}.
1287
1288 @item classify
1289 @samp{-F} in @code{ls}.
1290
1291 @item colons
1292 @samp{-c} in @code{recode}.
1293
1294 @item command
1295 @samp{-c} in @code{su};
1296 @samp{-x} in GDB.
1297
1298 @item compare
1299 @samp{-d} in @code{tar}.
1300
1301 @item compat
1302 Used in @code{gawk}.
1303
1304 @item compress
1305 @samp{-Z} in @code{tar} and @code{shar}.
1306
1307 @item concatenate
1308 @samp{-A} in @code{tar}.
1309
1310 @item confirmation
1311 @samp{-w} in @code{tar}.
1312
1313 @item context
1314 Used in @code{diff}.
1315
1316 @item copyleft
1317 @samp{-W copyleft} in @code{gawk}.
1318
1319 @item copyright
1320 @samp{-C} in @code{ptx}, @code{recode}, and @code{wdiff};
1321 @samp{-W copyright} in @code{gawk}.
1322
1323 @item core
1324 Used in GDB.
1325
1326 @item count
1327 @samp{-q} in @code{who}.
1328
1329 @item count-links
1330 @samp{-l} in @code{du}.
1331
1332 @item create
1333 Used in @code{tar} and @code{cpio}.
1334
1335 @item cut-mark
1336 @samp{-c} in @code{shar}.
1337
1338 @item cxref
1339 @samp{-x} in @code{ctags}.
1340
1341 @item date
1342 @samp{-d} in @code{touch}.
1343
1344 @item debug
1345 @samp{-d} in @code{make} and @code{m4};
1346 @samp{-t} in Bison.
1347
1348 @item define
1349 @samp{-D} in @code{m4}.
1350
1351 @item defines
1352 @samp{-d} in Bison and @code{ctags}.
1353
1354 @item delete
1355 @samp{-D} in @code{tar}.
1356
1357 @item dereference
1358 @samp{-L} in @code{chgrp}, @code{chown}, @code{cpio}, @code{du},
1359 @code{ls}, and @code{tar}.
1360
1361 @item dereference-args
1362 @samp{-D} in @code{du}.
1363
1364 @item device
1365 Specify an I/O device (special file name).
1366
1367 @item diacritics
1368 @samp{-d} in @code{recode}.
1369
1370 @item dictionary-order
1371 @samp{-d} in @code{look}.
1372
1373 @item diff
1374 @samp{-d} in @code{tar}.
1375
1376 @item digits
1377 @samp{-n} in @code{csplit}.
1378
1379 @item directory
1380 Specify the directory to use, in various programs.  In @code{ls}, it
1381 means to show directories themselves rather than their contents.  In
1382 @code{rm} and @code{ln}, it means to not treat links to directories
1383 specially.
1384
1385 @item discard-all
1386 @samp{-x} in @code{strip}.
1387
1388 @item discard-locals
1389 @samp{-X} in @code{strip}.
1390
1391 @item dry-run
1392 @samp{-n} in @code{make}.
1393
1394 @item ed
1395 @samp{-e} in @code{diff}.
1396
1397 @item elide-empty-files
1398 @samp{-z} in @code{csplit}.
1399
1400 @item end-delete
1401 @samp{-x} in @code{wdiff}.
1402
1403 @item end-insert
1404 @samp{-z} in @code{wdiff}.
1405
1406 @item entire-new-file
1407 @samp{-N} in @code{diff}.
1408
1409 @item environment-overrides
1410 @samp{-e} in @code{make}.
1411
1412 @item eof
1413 @samp{-e} in @code{xargs}.
1414
1415 @item epoch
1416 Used in GDB.
1417
1418 @item error-limit
1419 Used in @code{makeinfo}.
1420
1421 @item error-output
1422 @samp{-o} in @code{m4}.
1423
1424 @item escape
1425 @samp{-b} in @code{ls}.
1426
1427 @item exclude-from
1428 @samp{-X} in @code{tar}.
1429
1430 @item exec
1431 Used in GDB.
1432
1433 @item exit
1434 @samp{-x} in @code{xargs}.
1435
1436 @item exit-0
1437 @samp{-e} in @code{unshar}.
1438
1439 @item expand-tabs
1440 @samp{-t} in @code{diff}.
1441
1442 @item expression
1443 @samp{-e} in @code{sed}.
1444
1445 @item extern-only
1446 @samp{-g} in @code{nm}.
1447
1448 @item extract
1449 @samp{-i} in @code{cpio};
1450 @samp{-x} in @code{tar}.
1451
1452 @item faces
1453 @samp{-f} in @code{finger}.
1454
1455 @item fast
1456 @samp{-f} in @code{su}.
1457
1458 @item fatal-warnings
1459 @samp{-E} in @code{m4}.
1460
1461 @item file
1462 @samp{-f} in @code{gawk}, @code{info}, @code{make}, @code{mt},
1463 @code{sed}, and @code{tar}.
1464
1465 @item field-separator
1466 @samp{-F} in @code{gawk}.
1467
1468 @item file-prefix
1469 @samp{-b} in Bison.
1470
1471 @item file-type
1472 @samp{-F} in @code{ls}.
1473
1474 @item files-from
1475 @samp{-T} in @code{tar}.
1476
1477 @item fill-column
1478 Used in @code{makeinfo}.
1479
1480 @item flag-truncation
1481 @samp{-F} in @code{ptx}.
1482
1483 @item fixed-output-files
1484 @samp{-y} in Bison.
1485
1486 @item follow
1487 @samp{-f} in @code{tail}.
1488
1489 @item footnote-style
1490 Used in @code{makeinfo}.
1491
1492 @item force
1493 @samp{-f} in @code{cp}, @code{ln}, @code{mv}, and @code{rm}.
1494
1495 @item force-prefix
1496 @samp{-F} in @code{shar}.
1497
1498 @item foreground
1499 For server programs, run in the foreground;
1500 in other words, don't do anything special to run the server
1501 in the background.
1502
1503 @item format
1504 Used in @code{ls}, @code{time}, and @code{ptx}.
1505
1506 @item freeze-state
1507 @samp{-F} in @code{m4}.
1508
1509 @item fullname
1510 Used in GDB.
1511
1512 @item gap-size
1513 @samp{-g} in @code{ptx}.
1514
1515 @item get
1516 @samp{-x} in @code{tar}.
1517
1518 @item graphic
1519 @samp{-i} in @code{ul}.
1520
1521 @item graphics
1522 @samp{-g} in @code{recode}.
1523
1524 @item group
1525 @samp{-g} in @code{install}.
1526
1527 @item gzip
1528 @samp{-z} in @code{tar} and @code{shar}.
1529
1530 @item hashsize
1531 @samp{-H} in @code{m4}.
1532
1533 @item header
1534 @samp{-h} in @code{objdump} and @code{recode}
1535
1536 @item heading
1537 @samp{-H} in @code{who}.
1538
1539 @item help
1540 Used to ask for brief usage information.
1541
1542 @item here-delimiter
1543 @samp{-d} in @code{shar}.
1544
1545 @item hide-control-chars
1546 @samp{-q} in @code{ls}.
1547
1548 @item html
1549 In @code{makeinfo}, output HTML.
1550
1551 @item idle
1552 @samp{-u} in @code{who}.
1553
1554 @item ifdef
1555 @samp{-D} in @code{diff}.
1556
1557 @item ignore
1558 @samp{-I} in @code{ls};
1559 @samp{-x} in @code{recode}.
1560
1561 @item ignore-all-space
1562 @samp{-w} in @code{diff}.
1563
1564 @item ignore-backups
1565 @samp{-B} in @code{ls}.
1566
1567 @item ignore-blank-lines
1568 @samp{-B} in @code{diff}.
1569
1570 @item ignore-case
1571 @samp{-f} in @code{look} and @code{ptx};
1572 @samp{-i} in @code{diff} and @code{wdiff}.
1573
1574 @item ignore-errors
1575 @samp{-i} in @code{make}.
1576
1577 @item ignore-file
1578 @samp{-i} in @code{ptx}.
1579
1580 @item ignore-indentation
1581 @samp{-I} in @code{etags}.
1582
1583 @item ignore-init-file
1584 @samp{-f} in Oleo.
1585
1586 @item ignore-interrupts
1587 @samp{-i} in @code{tee}.
1588
1589 @item ignore-matching-lines
1590 @samp{-I} in @code{diff}.
1591
1592 @item ignore-space-change
1593 @samp{-b} in @code{diff}.
1594
1595 @item ignore-zeros
1596 @samp{-i} in @code{tar}.
1597
1598 @item include
1599 @samp{-i} in @code{etags};
1600 @samp{-I} in @code{m4}.
1601
1602 @item include-dir
1603 @samp{-I} in @code{make}.
1604
1605 @item incremental
1606 @samp{-G} in @code{tar}.
1607
1608 @item info
1609 @samp{-i}, @samp{-l}, and @samp{-m} in Finger.
1610
1611 @item init-file
1612 In some programs, specify the name of the file to read as the user's
1613 init file.
1614
1615 @item initial
1616 @samp{-i} in @code{expand}.
1617
1618 @item initial-tab
1619 @samp{-T} in @code{diff}.
1620
1621 @item inode
1622 @samp{-i} in @code{ls}.
1623
1624 @item interactive
1625 @samp{-i} in @code{cp}, @code{ln}, @code{mv}, @code{rm};
1626 @samp{-e} in @code{m4};
1627 @samp{-p} in @code{xargs};
1628 @samp{-w} in @code{tar}.
1629
1630 @item intermix-type
1631 @samp{-p} in @code{shar}.
1632
1633 @item iso-8601
1634 Used in @code{date}
1635
1636 @item jobs
1637 @samp{-j} in @code{make}.
1638
1639 @item just-print
1640 @samp{-n} in @code{make}.
1641
1642 @item keep-going
1643 @samp{-k} in @code{make}.
1644
1645 @item keep-files
1646 @samp{-k} in @code{csplit}.
1647
1648 @item kilobytes
1649 @samp{-k} in @code{du} and @code{ls}.
1650
1651 @item language
1652 @samp{-l} in @code{etags}.
1653
1654 @item less-mode
1655 @samp{-l} in @code{wdiff}.
1656
1657 @item level-for-gzip
1658 @samp{-g} in @code{shar}.
1659
1660 @item line-bytes
1661 @samp{-C} in @code{split}.
1662
1663 @item lines
1664 Used in @code{split}, @code{head}, and @code{tail}.
1665
1666 @item link
1667 @samp{-l} in @code{cpio}.
1668
1669 @item lint
1670 @itemx lint-old
1671 Used in @code{gawk}.
1672
1673 @item list
1674 @samp{-t} in @code{cpio};
1675 @samp{-l} in @code{recode}.
1676
1677 @item list
1678 @samp{-t} in @code{tar}.
1679
1680 @item literal
1681 @samp{-N} in @code{ls}.
1682
1683 @item load-average
1684 @samp{-l} in @code{make}.
1685
1686 @item login
1687 Used in @code{su}.
1688
1689 @item machine
1690 Used in @code{uname}.
1691
1692 @item macro-name
1693 @samp{-M} in @code{ptx}.
1694
1695 @item mail
1696 @samp{-m} in @code{hello} and @code{uname}.
1697
1698 @item make-directories
1699 @samp{-d} in @code{cpio}.
1700
1701 @item makefile
1702 @samp{-f} in @code{make}.
1703
1704 @item mapped
1705 Used in GDB.
1706
1707 @item max-args
1708 @samp{-n} in @code{xargs}.
1709
1710 @item max-chars
1711 @samp{-n} in @code{xargs}.
1712
1713 @item max-lines
1714 @samp{-l} in @code{xargs}.
1715
1716 @item max-load
1717 @samp{-l} in @code{make}.
1718
1719 @item max-procs
1720 @samp{-P} in @code{xargs}.
1721
1722 @item mesg
1723 @samp{-T} in @code{who}.
1724
1725 @item message
1726 @samp{-T} in @code{who}.
1727
1728 @item minimal
1729 @samp{-d} in @code{diff}.
1730
1731 @item mixed-uuencode
1732 @samp{-M} in @code{shar}.
1733
1734 @item mode
1735 @samp{-m} in @code{install}, @code{mkdir}, and @code{mkfifo}.
1736
1737 @item modification-time
1738 @samp{-m} in @code{tar}.
1739
1740 @item multi-volume
1741 @samp{-M} in @code{tar}.
1742
1743 @item name-prefix
1744 @samp{-a} in Bison.
1745
1746 @item nesting-limit
1747 @samp{-L} in @code{m4}.
1748
1749 @item net-headers
1750 @samp{-a} in @code{shar}.
1751
1752 @item new-file
1753 @samp{-W} in @code{make}.
1754
1755 @item no-builtin-rules
1756 @samp{-r} in @code{make}.
1757
1758 @item no-character-count
1759 @samp{-w} in @code{shar}.
1760
1761 @item no-check-existing
1762 @samp{-x} in @code{shar}.
1763
1764 @item no-common
1765 @samp{-3} in @code{wdiff}.
1766
1767 @item no-create
1768 @samp{-c} in @code{touch}.
1769
1770 @item no-defines
1771 @samp{-D} in @code{etags}.
1772
1773 @item no-deleted
1774 @samp{-1} in @code{wdiff}.
1775
1776 @item no-dereference
1777 @samp{-d} in @code{cp}.
1778
1779 @item no-inserted
1780 @samp{-2} in @code{wdiff}.
1781
1782 @item no-keep-going
1783 @samp{-S} in @code{make}.
1784
1785 @item no-lines
1786 @samp{-l} in Bison.
1787
1788 @item no-piping
1789 @samp{-P} in @code{shar}.
1790
1791 @item no-prof
1792 @samp{-e} in @code{gprof}.
1793
1794 @item no-regex
1795 @samp{-R} in @code{etags}.
1796
1797 @item no-sort
1798 @samp{-p} in @code{nm}.
1799
1800 @item no-splash
1801 Don't print a startup splash screen.
1802
1803 @item no-split
1804 Used in @code{makeinfo}.
1805
1806 @item no-static
1807 @samp{-a} in @code{gprof}.
1808
1809 @item no-time
1810 @samp{-E} in @code{gprof}.
1811
1812 @item no-timestamp
1813 @samp{-m} in @code{shar}.
1814
1815 @item no-validate
1816 Used in @code{makeinfo}.
1817
1818 @item no-wait
1819 Used in @code{emacsclient}.
1820
1821 @item no-warn
1822 Used in various programs to inhibit warnings.
1823
1824 @item node
1825 @samp{-n} in @code{info}.
1826
1827 @item nodename
1828 @samp{-n} in @code{uname}.
1829
1830 @item nonmatching
1831 @samp{-f} in @code{cpio}.
1832
1833 @item nstuff
1834 @samp{-n} in @code{objdump}.
1835
1836 @item null
1837 @samp{-0} in @code{xargs}.
1838
1839 @item number
1840 @samp{-n} in @code{cat}.
1841
1842 @item number-nonblank
1843 @samp{-b} in @code{cat}.
1844
1845 @item numeric-sort
1846 @samp{-n} in @code{nm}.
1847
1848 @item numeric-uid-gid
1849 @samp{-n} in @code{cpio} and @code{ls}.
1850
1851 @item nx
1852 Used in GDB.
1853
1854 @item old-archive
1855 @samp{-o} in @code{tar}.
1856
1857 @item old-file
1858 @samp{-o} in @code{make}.
1859
1860 @item one-file-system
1861 @samp{-l} in @code{tar}, @code{cp}, and @code{du}.
1862
1863 @item only-file
1864 @samp{-o} in @code{ptx}.
1865
1866 @item only-prof
1867 @samp{-f} in @code{gprof}.
1868
1869 @item only-time
1870 @samp{-F} in @code{gprof}.
1871
1872 @item options
1873 @samp{-o} in @code{getopt}, @code{fdlist}, @code{fdmount},
1874 @code{fdmountd}, and @code{fdumount}.
1875
1876 @item output
1877 In various programs, specify the output file name.
1878
1879 @item output-prefix
1880 @samp{-o} in @code{shar}.
1881
1882 @item override
1883 @samp{-o} in @code{rm}.
1884
1885 @item overwrite
1886 @samp{-c} in @code{unshar}.
1887
1888 @item owner
1889 @samp{-o} in @code{install}.
1890
1891 @item paginate
1892 @samp{-l} in @code{diff}.
1893
1894 @item paragraph-indent
1895 Used in @code{makeinfo}.
1896
1897 @item parents
1898 @samp{-p} in @code{mkdir} and @code{rmdir}.
1899
1900 @item pass-all
1901 @samp{-p} in @code{ul}.
1902
1903 @item pass-through
1904 @samp{-p} in @code{cpio}.
1905
1906 @item port
1907 @samp{-P} in @code{finger}.
1908
1909 @item portability
1910 @samp{-c} in @code{cpio} and @code{tar}.
1911
1912 @item posix
1913 Used in @code{gawk}.
1914
1915 @item prefix-builtins
1916 @samp{-P} in @code{m4}.
1917
1918 @item prefix
1919 @samp{-f} in @code{csplit}.
1920
1921 @item preserve
1922 Used in @code{tar} and @code{cp}.
1923
1924 @item preserve-environment
1925 @samp{-p} in @code{su}.
1926
1927 @item preserve-modification-time
1928 @samp{-m} in @code{cpio}.
1929
1930 @item preserve-order
1931 @samp{-s} in @code{tar}.
1932
1933 @item preserve-permissions
1934 @samp{-p} in @code{tar}.
1935
1936 @item print
1937 @samp{-l} in @code{diff}.
1938
1939 @item print-chars
1940 @samp{-L} in @code{cmp}.
1941
1942 @item print-data-base
1943 @samp{-p} in @code{make}.
1944
1945 @item print-directory
1946 @samp{-w} in @code{make}.
1947
1948 @item print-file-name
1949 @samp{-o} in @code{nm}.
1950
1951 @item print-symdefs
1952 @samp{-s} in @code{nm}.
1953
1954 @item printer
1955 @samp{-p} in @code{wdiff}.
1956
1957 @item prompt
1958 @samp{-p} in @code{ed}.
1959
1960 @item proxy
1961 Specify an HTTP proxy.
1962
1963 @item query-user
1964 @samp{-X} in @code{shar}.
1965
1966 @item question
1967 @samp{-q} in @code{make}.
1968
1969 @item quiet
1970 Used in many programs to inhibit the usual output.  Every
1971 program accepting @samp{--quiet} should accept @samp{--silent} as a
1972 synonym.
1973
1974 @item quiet-unshar
1975 @samp{-Q} in @code{shar}
1976
1977 @item quote-name
1978 @samp{-Q} in @code{ls}.
1979
1980 @item rcs
1981 @samp{-n} in @code{diff}.
1982
1983 @item re-interval
1984 Used in @code{gawk}.
1985
1986 @item read-full-blocks
1987 @samp{-B} in @code{tar}.
1988
1989 @item readnow
1990 Used in GDB.
1991
1992 @item recon
1993 @samp{-n} in @code{make}.
1994
1995 @item record-number
1996 @samp{-R} in @code{tar}.
1997
1998 @item recursive
1999 Used in @code{chgrp}, @code{chown}, @code{cp}, @code{ls}, @code{diff},
2000 and @code{rm}.
2001
2002 @item reference
2003 @samp{-r} in @code{touch}.
2004
2005 @item references
2006 @samp{-r} in @code{ptx}.
2007
2008 @item regex
2009 @samp{-r} in @code{tac} and @code{etags}.
2010
2011 @item release
2012 @samp{-r} in @code{uname}.
2013
2014 @item reload-state
2015 @samp{-R} in @code{m4}.
2016
2017 @item relocation
2018 @samp{-r} in @code{objdump}.
2019
2020 @item rename
2021 @samp{-r} in @code{cpio}.
2022
2023 @item replace
2024 @samp{-i} in @code{xargs}.
2025
2026 @item report-identical-files
2027 @samp{-s} in @code{diff}.
2028
2029 @item reset-access-time
2030 @samp{-a} in @code{cpio}.
2031
2032 @item reverse
2033 @samp{-r} in @code{ls} and @code{nm}.
2034
2035 @item reversed-ed
2036 @samp{-f} in @code{diff}.
2037
2038 @item right-side-defs
2039 @samp{-R} in @code{ptx}.
2040
2041 @item same-order
2042 @samp{-s} in @code{tar}.
2043
2044 @item same-permissions
2045 @samp{-p} in @code{tar}.
2046
2047 @item save
2048 @samp{-g} in @code{stty}.
2049
2050 @item se
2051 Used in GDB.
2052
2053 @item sentence-regexp
2054 @samp{-S} in @code{ptx}.
2055
2056 @item separate-dirs
2057 @samp{-S} in @code{du}.
2058
2059 @item separator
2060 @samp{-s} in @code{tac}.
2061
2062 @item sequence
2063 Used by @code{recode} to chose files or pipes for sequencing passes.
2064
2065 @item shell
2066 @samp{-s} in @code{su}.
2067
2068 @item show-all
2069 @samp{-A} in @code{cat}.
2070
2071 @item show-c-function
2072 @samp{-p} in @code{diff}.
2073
2074 @item show-ends
2075 @samp{-E} in @code{cat}.
2076
2077 @item show-function-line
2078 @samp{-F} in @code{diff}.
2079
2080 @item show-tabs
2081 @samp{-T} in @code{cat}.
2082
2083 @item silent
2084 Used in many programs to inhibit the usual output.
2085 Every program accepting
2086 @samp{--silent} should accept @samp{--quiet} as a synonym.
2087
2088 @item size
2089 @samp{-s} in @code{ls}.
2090
2091 @item socket
2092 Specify a file descriptor for a network server to use for its socket,
2093 instead of opening and binding a new socket.  This provides a way to
2094 run, in a non-privileged process, a server that normally needs a
2095 reserved port number.
2096
2097 @item sort
2098 Used in @code{ls}.
2099
2100 @item source
2101 @samp{-W source} in @code{gawk}.
2102
2103 @item sparse
2104 @samp{-S} in @code{tar}.
2105
2106 @item speed-large-files
2107 @samp{-H} in @code{diff}.
2108
2109 @item split-at
2110 @samp{-E} in @code{unshar}.
2111
2112 @item split-size-limit
2113 @samp{-L} in @code{shar}.
2114
2115 @item squeeze-blank
2116 @samp{-s} in @code{cat}.
2117
2118 @item start-delete
2119 @samp{-w} in @code{wdiff}.
2120
2121 @item start-insert
2122 @samp{-y} in @code{wdiff}.
2123
2124 @item starting-file
2125 Used in @code{tar} and @code{diff} to specify which file within
2126 a directory to start processing with.
2127
2128 @item statistics
2129 @samp{-s} in @code{wdiff}.
2130
2131 @item stdin-file-list
2132 @samp{-S} in @code{shar}.
2133
2134 @item stop
2135 @samp{-S} in @code{make}.
2136
2137 @item strict
2138 @samp{-s} in @code{recode}.
2139
2140 @item strip
2141 @samp{-s} in @code{install}.
2142
2143 @item strip-all
2144 @samp{-s} in @code{strip}.
2145
2146 @item strip-debug
2147 @samp{-S} in @code{strip}.
2148
2149 @item submitter
2150 @samp{-s} in @code{shar}.
2151
2152 @item suffix
2153 @samp{-S} in @code{cp}, @code{ln}, @code{mv}.
2154
2155 @item suffix-format
2156 @samp{-b} in @code{csplit}.
2157
2158 @item sum
2159 @samp{-s} in @code{gprof}.
2160
2161 @item summarize
2162 @samp{-s} in @code{du}.
2163
2164 @item symbolic
2165 @samp{-s} in @code{ln}.
2166
2167 @item symbols
2168 Used in GDB and @code{objdump}.
2169
2170 @item synclines
2171 @samp{-s} in @code{m4}.
2172
2173 @item sysname
2174 @samp{-s} in @code{uname}.
2175
2176 @item tabs
2177 @samp{-t} in @code{expand} and @code{unexpand}.
2178
2179 @item tabsize
2180 @samp{-T} in @code{ls}.
2181
2182 @item terminal
2183 @samp{-T} in @code{tput} and @code{ul}.
2184 @samp{-t} in @code{wdiff}.
2185
2186 @item text
2187 @samp{-a} in @code{diff}.
2188
2189 @item text-files
2190 @samp{-T} in @code{shar}.
2191
2192 @item time
2193 Used in @code{ls} and @code{touch}.
2194
2195 @item timeout
2196 Specify how long to wait before giving up on some operation.
2197
2198 @item to-stdout
2199 @samp{-O} in @code{tar}.
2200
2201 @item total
2202 @samp{-c} in @code{du}.
2203
2204 @item touch
2205 @samp{-t} in @code{make}, @code{ranlib}, and @code{recode}.
2206
2207 @item trace
2208 @samp{-t} in @code{m4}.
2209
2210 @item traditional
2211 @samp{-t} in @code{hello};
2212 @samp{-W traditional} in @code{gawk};
2213 @samp{-G} in @code{ed}, @code{m4}, and @code{ptx}.
2214
2215 @item tty
2216 Used in GDB.
2217
2218 @item typedefs
2219 @samp{-t} in @code{ctags}.
2220
2221 @item typedefs-and-c++
2222 @samp{-T} in @code{ctags}.
2223
2224 @item typeset-mode
2225 @samp{-t} in @code{ptx}.
2226
2227 @item uncompress
2228 @samp{-z} in @code{tar}.
2229
2230 @item unconditional
2231 @samp{-u} in @code{cpio}.
2232
2233 @item undefine
2234 @samp{-U} in @code{m4}.
2235
2236 @item undefined-only
2237 @samp{-u} in @code{nm}.
2238
2239 @item update
2240 @samp{-u} in @code{cp}, @code{ctags}, @code{mv}, @code{tar}.
2241
2242 @item usage
2243 Used in @code{gawk}; same as @samp{--help}.
2244
2245 @item uuencode
2246 @samp{-B} in @code{shar}.
2247
2248 @item vanilla-operation
2249 @samp{-V} in @code{shar}.
2250
2251 @item verbose
2252 Print more information about progress.  Many programs support this.
2253
2254 @item verify
2255 @samp{-W} in @code{tar}.
2256
2257 @item version
2258 Print the version number.
2259
2260 @item version-control
2261 @samp{-V} in @code{cp}, @code{ln}, @code{mv}.
2262
2263 @item vgrind
2264 @samp{-v} in @code{ctags}.
2265
2266 @item volume
2267 @samp{-V} in @code{tar}.
2268
2269 @item what-if
2270 @samp{-W} in @code{make}.
2271
2272 @item whole-size-limit
2273 @samp{-l} in @code{shar}.
2274
2275 @item width
2276 @samp{-w} in @code{ls} and @code{ptx}.
2277
2278 @item word-regexp
2279 @samp{-W} in @code{ptx}.
2280
2281 @item writable
2282 @samp{-T} in @code{who}.
2283
2284 @item zeros
2285 @samp{-z} in @code{gprof}.
2286 @end table
2287
2288 @node OID Allocations
2289 @section OID Allocations
2290 @cindex OID allocations for GNU
2291 @cindex SNMP
2292 @cindex LDAP
2293 @cindex X.509
2294
2295 The OID (object identifier) 1.3.6.1.4.1.11591 has been assigned to the
2296 GNU Project (thanks to Werner Koch).  These are used for SNMP, LDAP,
2297 X.509 certificates, and so on.  The web site
2298 @url{http://www.alvestrand.no/objectid} has a (voluntary) listing of
2299 many OID assignments.
2300
2301 If you need a new slot for your GNU package, write
2302 @email{maintainers@@gnu.org}.  Here is a list of arcs currently
2303 assigned:
2304
2305 @example
2306 @include gnu-oids.texi
2307 @end example
2308
2309
2310 @node Memory Usage
2311 @section Memory Usage
2312 @cindex memory usage
2313
2314 If a program typically uses just a few meg of memory, don't bother making any
2315 effort to reduce memory usage.  For example, if it is impractical for
2316 other reasons to operate on files more than a few meg long, it is
2317 reasonable to read entire input files into memory to operate on them.
2318
2319 However, for programs such as @code{cat} or @code{tail}, that can
2320 usefully operate on very large files, it is important to avoid using a
2321 technique that would artificially limit the size of files it can handle.
2322 If a program works by lines and could be applied to arbitrary
2323 user-supplied input files, it should keep only a line in memory, because
2324 this is not very hard and users will want to be able to operate on input
2325 files that are bigger than will fit in memory all at once.
2326
2327 If your program creates complicated data structures, just make them in
2328 memory and give a fatal error if @code{malloc} returns zero.
2329
2330 @pindex valgrind
2331 @cindex memory leak
2332 Memory leak detectors such as @command{valgrind} can be useful, but
2333 don't complicate a program merely to avoid their false alarms.  For
2334 example, if memory is used until just before a process exits, don't
2335 free it simply to silence a leak detector.
2336
2337 @node File Usage
2338 @section File Usage
2339 @cindex file usage
2340
2341 Programs should be prepared to operate when @file{/usr} and @file{/etc}
2342 are read-only file systems.  Thus, if the program manages log files,
2343 lock files, backup files, score files, or any other files which are
2344 modified for internal purposes, these files should not be stored in
2345 @file{/usr} or @file{/etc}.
2346
2347 There are two exceptions.  @file{/etc} is used to store system
2348 configuration information; it is reasonable for a program to modify
2349 files in @file{/etc} when its job is to update the system configuration.
2350 Also, if the user explicitly asks to modify one file in a directory, it
2351 is reasonable for the program to store other files in the same
2352 directory.
2353
2354 @node Writing C
2355 @chapter Making The Best Use of C
2356
2357 This chapter provides advice on how best to use the C language
2358 when writing GNU software.
2359
2360 @menu
2361 * Formatting::                  Formatting your source code.
2362 * Comments::                    Commenting your work.
2363 * Syntactic Conventions::       Clean use of C constructs.
2364 * Names::                       Naming variables, functions, and files.
2365 * System Portability::          Portability among different operating systems.
2366 * CPU Portability::             Supporting the range of CPU types.
2367 * System Functions::            Portability and ``standard'' library functions.
2368 * Internationalization::        Techniques for internationalization.
2369 * Character Set::               Use ASCII by default.
2370 * Quote Characters::            Use `...' in the C locale.
2371 * Mmap::                        How you can safely use @code{mmap}.
2372 @end menu
2373
2374 @node Formatting
2375 @section Formatting Your Source Code
2376 @cindex formatting source code
2377
2378 @cindex open brace
2379 @cindex braces, in C source
2380 It is important to put the open-brace that starts the body of a C
2381 function in column one, so that they will start a defun.  Several
2382 tools look for open-braces in column one to find the beginnings of C
2383 functions.  These tools will not work on code not formatted that way.
2384
2385 Avoid putting open-brace, open-parenthesis or open-bracket in column
2386 one when they are inside a function, so that they won't start a defun.
2387 The open-brace that starts a @code{struct} body can go in column one
2388 if you find it useful to treat that definition as a defun.
2389
2390 It is also important for function definitions to start the name of the
2391 function in column one.  This helps people to search for function
2392 definitions, and may also help certain tools recognize them.  Thus,
2393 using Standard C syntax, the format is this:
2394
2395 @example
2396 static char *
2397 concat (char *s1, char *s2)
2398 @{
2399   @dots{}
2400 @}
2401 @end example
2402
2403 @noindent
2404 or, if you want to use traditional C syntax, format the definition like
2405 this:
2406
2407 @example
2408 static char *
2409 concat (s1, s2)        /* Name starts in column one here */
2410      char *s1, *s2;
2411 @{                     /* Open brace in column one here */
2412   @dots{}
2413 @}
2414 @end example
2415
2416 In Standard C, if the arguments don't fit nicely on one line,
2417 split it like this:
2418
2419 @example
2420 int
2421 lots_of_args (int an_integer, long a_long, short a_short,
2422               double a_double, float a_float)
2423 @dots{}
2424 @end example
2425
2426 The rest of this section gives our recommendations for other aspects of
2427 C formatting style, which is also the default style of the @code{indent}
2428 program in version 1.2 and newer.  It corresponds to the options
2429
2430 @smallexample
2431 -nbad -bap -nbc -bbo -bl -bli2 -bls -ncdb -nce -cp1 -cs -di2
2432 -ndj -nfc1 -nfca -hnl -i2 -ip5 -lp -pcs -psl -nsc -nsob
2433 @end smallexample
2434
2435 We don't think of these recommendations as requirements, because it
2436 causes no problems for users if two different programs have different
2437 formatting styles.
2438
2439 But whatever style you use, please use it consistently, since a mixture
2440 of styles within one program tends to look ugly.  If you are
2441 contributing changes to an existing program, please follow the style of
2442 that program.
2443
2444 For the body of the function, our recommended style looks like this:
2445
2446 @example
2447 if (x < foo (y, z))
2448   haha = bar[4] + 5;
2449 else
2450   @{
2451     while (z)
2452       @{
2453         haha += foo (z, z);
2454         z--;
2455       @}
2456     return ++x + bar ();
2457   @}
2458 @end example
2459
2460 @cindex spaces before open-paren
2461 We find it easier to read a program when it has spaces before the
2462 open-parentheses and after the commas.  Especially after the commas.
2463
2464 When you split an expression into multiple lines, split it
2465 before an operator, not after one.  Here is the right way:
2466
2467 @cindex expressions, splitting
2468 @example
2469 if (foo_this_is_long && bar > win (x, y, z)
2470     && remaining_condition)
2471 @end example
2472
2473 Try to avoid having two operators of different precedence at the same
2474 level of indentation.  For example, don't write this:
2475
2476 @example
2477 mode = (inmode[j] == VOIDmode
2478         || GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])
2479         ? outmode[j] : inmode[j]);
2480 @end example
2481
2482 Instead, use extra parentheses so that the indentation shows the nesting:
2483
2484 @example
2485 mode = ((inmode[j] == VOIDmode
2486          || (GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])))
2487         ? outmode[j] : inmode[j]);
2488 @end example
2489
2490 Insert extra parentheses so that Emacs will indent the code properly.
2491 For example, the following indentation looks nice if you do it by hand,
2492
2493 @example
2494 v = rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
2495     + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000;
2496 @end example
2497
2498 @noindent
2499 but Emacs would alter it.  Adding a set of parentheses produces
2500 something that looks equally nice, and which Emacs will preserve:
2501
2502 @example
2503 v = (rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
2504      + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000);
2505 @end example
2506
2507 Format do-while statements like this:
2508
2509 @example
2510 do
2511   @{
2512     a = foo (a);
2513   @}
2514 while (a > 0);
2515 @end example
2516
2517 @cindex formfeed
2518 @cindex control-L
2519 Please use formfeed characters (control-L) to divide the program into
2520 pages at logical places (but not within a function).  It does not matter
2521 just how long the pages are, since they do not have to fit on a printed
2522 page.  The formfeeds should appear alone on lines by themselves.
2523
2524 @node Comments
2525 @section Commenting Your Work
2526 @cindex commenting
2527
2528 Every program should start with a comment saying briefly what it is for.
2529 Example: @samp{fmt - filter for simple filling of text}.  This comment
2530 should be at the top of the source file containing the @samp{main}
2531 function of the program.
2532
2533 Also, please write a brief comment at the start of each source file,
2534 with the file name and a line or two about the overall purpose of the
2535 file.
2536
2537 Please write the comments in a GNU program in English, because English
2538 is the one language that nearly all programmers in all countries can
2539 read.  If you do not write English well, please write comments in
2540 English as well as you can, then ask other people to help rewrite them.
2541 If you can't write comments in English, please find someone to work with
2542 you and translate your comments into English.
2543
2544 Please put a comment on each function saying what the function does,
2545 what sorts of arguments it gets, and what the possible values of
2546 arguments mean and are used for.  It is not necessary to duplicate in
2547 words the meaning of the C argument declarations, if a C type is being
2548 used in its customary fashion.  If there is anything nonstandard about
2549 its use (such as an argument of type @code{char *} which is really the
2550 address of the second character of a string, not the first), or any
2551 possible values that would not work the way one would expect (such as,
2552 that strings containing newlines are not guaranteed to work), be sure
2553 to say so.
2554
2555 Also explain the significance of the return value, if there is one.
2556
2557 Please put two spaces after the end of a sentence in your comments, so
2558 that the Emacs sentence commands will work.  Also, please write
2559 complete sentences and capitalize the first word.  If a lower-case
2560 identifier comes at the beginning of a sentence, don't capitalize it!
2561 Changing the spelling makes it a different identifier.  If you don't
2562 like starting a sentence with a lower case letter, write the sentence
2563 differently (e.g., ``The identifier lower-case is @dots{}'').
2564
2565 The comment on a function is much clearer if you use the argument
2566 names to speak about the argument values.  The variable name itself
2567 should be lower case, but write it in upper case when you are speaking
2568 about the value rather than the variable itself.  Thus, ``the inode
2569 number NODE_NUM'' rather than ``an inode''.
2570
2571 There is usually no purpose in restating the name of the function in
2572 the comment before it, because the reader can see that for himself.
2573 There might be an exception when the comment is so long that the function
2574 itself would be off the bottom of the screen.
2575
2576 There should be a comment on each static variable as well, like this:
2577
2578 @example
2579 /* Nonzero means truncate lines in the display;
2580    zero means continue them.  */
2581 int truncate_lines;
2582 @end example
2583
2584 @cindex conditionals, comments for
2585 @cindex @code{#endif}, commenting
2586 Every @samp{#endif} should have a comment, except in the case of short
2587 conditionals (just a few lines) that are not nested.  The comment should
2588 state the condition of the conditional that is ending, @emph{including
2589 its sense}.  @samp{#else} should have a comment describing the condition
2590 @emph{and sense} of the code that follows.  For example:
2591
2592 @example
2593 @group
2594 #ifdef foo
2595   @dots{}
2596 #else /* not foo */
2597   @dots{}
2598 #endif /* not foo */
2599 @end group
2600 @group
2601 #ifdef foo
2602   @dots{}
2603 #endif /* foo */
2604 @end group
2605 @end example
2606
2607 @noindent
2608 but, by contrast, write the comments this way for a @samp{#ifndef}:
2609
2610 @example
2611 @group
2612 #ifndef foo
2613   @dots{}
2614 #else /* foo */
2615   @dots{}
2616 #endif /* foo */
2617 @end group
2618 @group
2619 #ifndef foo
2620   @dots{}
2621 #endif /* not foo */
2622 @end group
2623 @end example
2624
2625 @node Syntactic Conventions
2626 @section Clean Use of C Constructs
2627 @cindex syntactic conventions
2628
2629 @cindex implicit @code{int}
2630 @cindex function argument, declaring
2631 Please explicitly declare the types of all objects.  For example, you
2632 should explicitly declare all arguments to functions, and you should
2633 declare functions to return @code{int} rather than omitting the
2634 @code{int}.
2635
2636 @cindex compiler warnings
2637 @cindex @samp{-Wall} compiler option
2638 Some programmers like to use the GCC @samp{-Wall} option, and change the
2639 code whenever it issues a warning.  If you want to do this, then do.
2640 Other programmers prefer not to use @samp{-Wall}, because it gives
2641 warnings for valid and legitimate code which they do not want to change.
2642 If you want to do this, then do.  The compiler should be your servant,
2643 not your master.
2644
2645 @pindex clang
2646 @pindex lint
2647 Don't make the program ugly just to placate static analysis tools such
2648 as @command{lint}, @command{clang}, and GCC with extra warnings
2649 options such as @option{-Wconversion} and @option{-Wundef}.  These
2650 tools can help find bugs and unclear code, but they can also generate
2651 so many false alarms that that it hurts readability to silence them
2652 with unnecessary casts, wrappers, and other complications.  For
2653 example, please don't insert casts to @code{void} or calls to
2654 do-nothing functions merely to pacify a lint checker.
2655
2656 Declarations of external functions and functions to appear later in the
2657 source file should all go in one place near the beginning of the file
2658 (somewhere before the first function definition in the file), or else
2659 should go in a header file.  Don't put @code{extern} declarations inside
2660 functions.
2661
2662 @cindex temporary variables
2663 It used to be common practice to use the same local variables (with
2664 names like @code{tem}) over and over for different values within one
2665 function.  Instead of doing this, it is better to declare a separate local
2666 variable for each distinct purpose, and give it a name which is
2667 meaningful.  This not only makes programs easier to understand, it also
2668 facilitates optimization by good compilers.  You can also move the
2669 declaration of each local variable into the smallest scope that includes
2670 all its uses.  This makes the program even cleaner.
2671
2672 Don't use local variables or parameters that shadow global identifiers.
2673 GCC's @samp{-Wshadow} option can detect this problem.
2674
2675 @cindex multiple variables in a line
2676 Don't declare multiple variables in one declaration that spans lines.
2677 Start a new declaration on each line, instead.  For example, instead
2678 of this:
2679
2680 @example
2681 @group
2682 int    foo,
2683        bar;
2684 @end group
2685 @end example
2686
2687 @noindent
2688 write either this:
2689
2690 @example
2691 int foo, bar;
2692 @end example
2693
2694 @noindent
2695 or this:
2696
2697 @example
2698 int foo;
2699 int bar;
2700 @end example
2701
2702 @noindent
2703 (If they are global variables, each should have a comment preceding it
2704 anyway.)
2705
2706 When you have an @code{if}-@code{else} statement nested in another
2707 @code{if} statement, always put braces around the @code{if}-@code{else}.
2708 Thus, never write like this:
2709
2710 @example
2711 if (foo)
2712   if (bar)
2713     win ();
2714   else
2715     lose ();
2716 @end example
2717
2718 @noindent
2719 always like this:
2720
2721 @example
2722 if (foo)
2723   @{
2724     if (bar)
2725       win ();
2726     else
2727       lose ();
2728   @}
2729 @end example
2730
2731 If you have an @code{if} statement nested inside of an @code{else}
2732 statement, either write @code{else if} on one line, like this,
2733
2734 @example
2735 if (foo)
2736   @dots{}
2737 else if (bar)
2738   @dots{}
2739 @end example
2740
2741 @noindent
2742 with its @code{then}-part indented like the preceding @code{then}-part,
2743 or write the nested @code{if} within braces like this:
2744
2745 @example
2746 if (foo)
2747   @dots{}
2748 else
2749   @{
2750     if (bar)
2751       @dots{}
2752   @}
2753 @end example
2754
2755 Don't declare both a structure tag and variables or typedefs in the
2756 same declaration.  Instead, declare the structure tag separately
2757 and then use it to declare the variables or typedefs.
2758
2759 Try to avoid assignments inside @code{if}-conditions (assignments
2760 inside @code{while}-conditions are ok).  For example, don't write
2761 this:
2762
2763 @example
2764 if ((foo = (char *) malloc (sizeof *foo)) == 0)
2765   fatal ("virtual memory exhausted");
2766 @end example
2767
2768 @noindent
2769 instead, write this:
2770
2771 @example
2772 foo = (char *) malloc (sizeof *foo);
2773 if (foo == 0)
2774   fatal ("virtual memory exhausted");
2775 @end example
2776
2777 This example uses zero without a cast as a null pointer constant.
2778 This is perfectly fine, except that a cast is needed when calling a
2779 varargs function or when using @code{sizeof}.
2780
2781 @node Names
2782 @section Naming Variables, Functions, and Files
2783
2784 @cindex names of variables, functions, and files
2785 The names of global variables and functions in a program serve as
2786 comments of a sort.  So don't choose terse names---instead, look for
2787 names that give useful information about the meaning of the variable or
2788 function.  In a GNU program, names should be English, like other
2789 comments.
2790
2791 Local variable names can be shorter, because they are used only within
2792 one context, where (presumably) comments explain their purpose.
2793
2794 Try to limit your use of abbreviations in symbol names.  It is ok to
2795 make a few abbreviations, explain what they mean, and then use them
2796 frequently, but don't use lots of obscure abbreviations.
2797
2798 Please use underscores to separate words in a name, so that the Emacs
2799 word commands can be useful within them.  Stick to lower case; reserve
2800 upper case for macros and @code{enum} constants, and for name-prefixes
2801 that follow a uniform convention.
2802
2803 For example, you should use names like @code{ignore_space_change_flag};
2804 don't use names like @code{iCantReadThis}.
2805
2806 Variables that indicate whether command-line options have been
2807 specified should be named after the meaning of the option, not after
2808 the option-letter.  A comment should state both the exact meaning of
2809 the option and its letter.  For example,
2810
2811 @example
2812 @group
2813 /* Ignore changes in horizontal whitespace (-b).  */
2814 int ignore_space_change_flag;
2815 @end group
2816 @end example
2817
2818 When you want to define names with constant integer values, use
2819 @code{enum} rather than @samp{#define}.  GDB knows about enumeration
2820 constants.
2821
2822 @cindex file-name limitations
2823 @pindex doschk
2824 You might want to make sure that none of the file names would conflict
2825 if the files were loaded onto an MS-DOS file system which shortens the
2826 names.  You can use the program @code{doschk} to test for this.
2827
2828 Some GNU programs were designed to limit themselves to file names of 14
2829 characters or less, to avoid file name conflicts if they are read into
2830 older System V systems.  Please preserve this feature in the existing
2831 GNU programs that have it, but there is no need to do this in new GNU
2832 programs.  @code{doschk} also reports file names longer than 14
2833 characters.
2834
2835
2836 @node System Portability
2837 @section Portability between System Types
2838 @cindex portability, between system types
2839
2840 In the Unix world, ``portability'' refers to porting to different Unix
2841 versions.  For a GNU program, this kind of portability is desirable, but
2842 not paramount.
2843
2844 The primary purpose of GNU software is to run on top of the GNU kernel,
2845 compiled with the GNU C compiler, on various types of @sc{cpu}.  So the
2846 kinds of portability that are absolutely necessary are quite limited.
2847 But it is important to support Linux-based GNU systems, since they
2848 are the form of GNU that is popular.
2849
2850 Beyond that, it is good to support the other free operating systems
2851 (*BSD), and it is nice to support other Unix-like systems if you want
2852 to.  Supporting a variety of Unix-like systems is desirable, although
2853 not paramount.  It is usually not too hard, so you may as well do it.
2854 But you don't have to consider it an obligation, if it does turn out to
2855 be hard.
2856
2857 @pindex autoconf
2858 The easiest way to achieve portability to most Unix-like systems is to
2859 use Autoconf.  It's unlikely that your program needs to know more
2860 information about the host platform than Autoconf can provide, simply
2861 because most of the programs that need such knowledge have already been
2862 written.
2863
2864 Avoid using the format of semi-internal data bases (e.g., directories)
2865 when there is a higher-level alternative (@code{readdir}).
2866
2867 @cindex non-@sc{posix} systems, and portability
2868 As for systems that are not like Unix, such as MSDOS, Windows, VMS, MVS,
2869 and older Macintosh systems, supporting them is often a lot of work.
2870 When that is the case, it is better to spend your time adding features
2871 that will be useful on GNU and GNU/Linux, rather than on supporting
2872 other incompatible systems.
2873
2874 If you do support Windows, please do not abbreviate it as ``win''.  In
2875 hacker terminology, calling something a ``win'' is a form of praise.
2876 You're free to praise Microsoft Windows on your own if you want, but
2877 please don't do this in GNU packages.  Instead of abbreviating
2878 ``Windows'' to ``win'', you can write it in full or abbreviate it to
2879 ``woe'' or ``w''.  In GNU Emacs, for instance, we use @samp{w32} in
2880 file names of Windows-specific files, but the macro for Windows
2881 conditionals is called @code{WINDOWSNT}.
2882
2883 It is a good idea to define the ``feature test macro''
2884 @code{_GNU_SOURCE} when compiling your C files.  When you compile on GNU
2885 or GNU/Linux, this will enable the declarations of GNU library extension
2886 functions, and that will usually give you a compiler error message if
2887 you define the same function names in some other way in your program.
2888 (You don't have to actually @emph{use} these functions, if you prefer
2889 to make the program more portable to other systems.)
2890
2891 But whether or not you use these GNU extensions, you should avoid
2892 using their names for any other meanings.  Doing so would make it hard
2893 to move your code into other GNU programs.
2894
2895 @node CPU Portability
2896 @section Portability between @sc{cpu}s
2897
2898 @cindex data types, and portability
2899 @cindex portability, and data types
2900 Even GNU systems will differ because of differences among @sc{cpu}
2901 types---for example, difference in byte ordering and alignment
2902 requirements.  It is absolutely essential to handle these differences.
2903 However, don't make any effort to cater to the possibility that an
2904 @code{int} will be less than 32 bits.  We don't support 16-bit machines
2905 in GNU.
2906
2907 Similarly, don't make any effort to cater to the possibility that
2908 @code{long} will be smaller than predefined types like @code{size_t}.
2909 For example, the following code is ok:
2910
2911 @example
2912 printf ("size = %lu\n", (unsigned long) sizeof array);
2913 printf ("diff = %ld\n", (long) (pointer2 - pointer1));
2914 @end example
2915
2916 1989 Standard C requires this to work, and we know of only one
2917 counterexample: 64-bit programs on Microsoft Windows.  We will leave
2918 it to those who want to port GNU programs to that environment to
2919 figure out how to do it.
2920
2921 Predefined file-size types like @code{off_t} are an exception: they are
2922 longer than @code{long} on many platforms, so code like the above won't
2923 work with them.  One way to print an @code{off_t} value portably is to
2924 print its digits yourself, one by one.
2925
2926 Don't assume that the address of an @code{int} object is also the
2927 address of its least-significant byte.  This is false on big-endian
2928 machines.  Thus, don't make the following mistake:
2929
2930 @example
2931 int c;
2932 @dots{}
2933 while ((c = getchar ()) != EOF)
2934   write (file_descriptor, &c, 1);
2935 @end example
2936
2937 @noindent Instead, use @code{unsigned char} as follows.  (The @code{unsigned}
2938 is for portability to unusual systems where @code{char} is signed and
2939 where there is integer overflow checking.)
2940
2941 @example
2942 int c;
2943 while ((c = getchar ()) != EOF)
2944   @{
2945     unsigned char u = c;
2946     write (file_descriptor, &u, 1);
2947   @}
2948 @end example
2949
2950 @cindex casting pointers to integers
2951 Avoid casting pointers to integers if you can.  Such casts greatly
2952 reduce portability, and in most programs they are easy to avoid.  In the
2953 cases where casting pointers to integers is essential---such as, a Lisp
2954 interpreter which stores type information as well as an address in one
2955 word---you'll have to make explicit provisions to handle different word
2956 sizes.  You will also need to make provision for systems in which the
2957 normal range of addresses you can get from @code{malloc} starts far away
2958 from zero.
2959
2960
2961 @node System Functions
2962 @section Calling System Functions
2963
2964 @cindex C library functions, and portability
2965 @cindex POSIX functions, and portability
2966 @cindex library functions, and portability
2967 @cindex portability, and library functions
2968
2969 Historically, C implementations differed substantially, and many
2970 systems lacked a full implementation of ANSI/ISO C89.  Nowadays,
2971 however, very few systems lack a C89 compiler and GNU C supports
2972 almost all of C99.  Similarly, most systems implement POSIX.1-1993
2973 libraries and tools, and many have POSIX.1-2001.
2974
2975 Hence, there is little reason to support old C or non-POSIX systems,
2976 and you may want to take advantage of C99 and POSIX-1.2001 to write
2977 clearer, more portable, or faster code.  You should use standard
2978 interfaces where possible; but if GNU extensions make your program
2979 more maintainable, powerful, or otherwise better, don't hesitate to
2980 use them.  In any case, don't make your own declaration of system
2981 functions; that's a recipe for conflict.
2982
2983 Despite the standards, nearly every library function has some sort of
2984 portability issue on some system or another.  Here are some examples:
2985
2986 @table @code
2987 @item open
2988 Names with trailing @code{/}'s are mishandled on many platforms.
2989
2990 @item printf
2991 @code{long double} may be unimplemented; floating values Infinity and
2992 NaN are often mishandled; output for large precisions may be
2993 incorrect.
2994
2995 @item readlink
2996 May return @code{int} instead of @code{ssize_t}.
2997
2998 @item scanf
2999 On Windows, @code{errno} is not set on failure.
3000 @end table
3001
3002 @cindex Gnulib
3003 @uref{http://www.gnu.org/software/gnulib/, Gnulib} is a big help in
3004 this regard.  Gnulib provides implementations of standard interfaces
3005 on many of the systems that lack them, including portable
3006 implementations of enhanced GNU interfaces, thereby making their use
3007 portable, and of POSIX-1.2008 interfaces, some of which are missing
3008 even on up-to-date GNU systems.
3009
3010 @findex xmalloc, in Gnulib
3011 @findex error messages, in Gnulib
3012 @findex data structures, in Gnulib
3013 Gnulib also provides many useful non-standard interfaces; for example,
3014 C implementations of standard data structures (hash tables, binary
3015 trees), error-checking type-safe wrappers for memory allocation
3016 functions (@code{xmalloc}, @code{xrealloc}), and output of error
3017 messages.
3018
3019 Gnulib integrates with GNU Autoconf and Automake to remove much of the
3020 burden of writing portable code from the programmer: Gnulib makes your
3021 configure script automatically determine what features are missing and
3022 use the Gnulib code to supply the missing pieces.
3023
3024 The Gnulib and Autoconf manuals have extensive sections on
3025 portability: @ref{Top,, Introduction, gnulib, Gnulib} and
3026 @pxref{Portable C and C++,,, autoconf, Autoconf}.  Please consult them
3027 for many more details.
3028
3029
3030 @node Internationalization
3031 @section Internationalization
3032 @cindex internationalization
3033
3034 @pindex gettext
3035 GNU has a library called GNU gettext that makes it easy to translate the
3036 messages in a program into various languages.  You should use this
3037 library in every program.  Use English for the messages as they appear
3038 in the program, and let gettext provide the way to translate them into
3039 other languages.
3040
3041 Using GNU gettext involves putting a call to the @code{gettext} macro
3042 around each string that might need translation---like this:
3043
3044 @example
3045 printf (gettext ("Processing file `%s'..."));
3046 @end example
3047
3048 @noindent
3049 This permits GNU gettext to replace the string @code{"Processing file
3050 `%s'..."} with a translated version.
3051
3052 Once a program uses gettext, please make a point of writing calls to
3053 @code{gettext} when you add new strings that call for translation.
3054
3055 Using GNU gettext in a package involves specifying a @dfn{text domain
3056 name} for the package.  The text domain name is used to separate the
3057 translations for this package from the translations for other packages.
3058 Normally, the text domain name should be the same as the name of the
3059 package---for example, @samp{coreutils} for the GNU core utilities.
3060
3061 @cindex message text, and internationalization
3062 To enable gettext to work well, avoid writing code that makes
3063 assumptions about the structure of words or sentences.  When you want
3064 the precise text of a sentence to vary depending on the data, use two or
3065 more alternative string constants each containing a complete sentences,
3066 rather than inserting conditionalized words or phrases into a single
3067 sentence framework.
3068
3069 Here is an example of what not to do:
3070
3071 @smallexample
3072 printf ("%s is full", capacity > 5000000 ? "disk" : "floppy disk");
3073 @end smallexample
3074
3075 If you apply gettext to all strings, like this,
3076
3077 @smallexample
3078 printf (gettext ("%s is full"),
3079         capacity > 5000000 ? gettext ("disk") : gettext ("floppy disk"));
3080 @end smallexample
3081
3082 @noindent
3083 the translator will hardly know that "disk" and "floppy disk" are meant to
3084 be substituted in the other string.  Worse, in some languages (like French)
3085 the construction will not work: the translation of the word "full" depends
3086 on the gender of the first part of the sentence; it happens to be not the
3087 same for "disk" as for "floppy disk".
3088
3089 Complete sentences can be translated without problems:
3090
3091 @example
3092 printf (capacity > 5000000 ? gettext ("disk is full")
3093         : gettext ("floppy disk is full"));
3094 @end example
3095
3096 A similar problem appears at the level of sentence structure with this
3097 code:
3098
3099 @example
3100 printf ("#  Implicit rule search has%s been done.\n",
3101         f->tried_implicit ? "" : " not");
3102 @end example
3103
3104 @noindent
3105 Adding @code{gettext} calls to this code cannot give correct results for
3106 all languages, because negation in some languages requires adding words
3107 at more than one place in the sentence.  By contrast, adding
3108 @code{gettext} calls does the job straightforwardly if the code starts
3109 out like this:
3110
3111 @example
3112 printf (f->tried_implicit
3113         ? "#  Implicit rule search has been done.\n",
3114         : "#  Implicit rule search has not been done.\n");
3115 @end example
3116
3117 Another example is this one:
3118
3119 @example
3120 printf ("%d file%s processed", nfiles,
3121         nfiles != 1 ? "s" : "");
3122 @end example
3123
3124 @noindent
3125 The problem with this example is that it assumes that plurals are made
3126 by adding `s'.  If you apply gettext to the format string, like this,
3127
3128 @example
3129 printf (gettext ("%d file%s processed"), nfiles,
3130         nfiles != 1 ? "s" : "");
3131 @end example
3132
3133 @noindent
3134 the message can use different words, but it will still be forced to use
3135 `s' for the plural.  Here is a better way, with gettext being applied to
3136 the two strings independently:
3137
3138 @example
3139 printf ((nfiles != 1 ? gettext ("%d files processed")
3140          : gettext ("%d file processed")),
3141         nfiles);
3142 @end example
3143
3144 @noindent
3145 But this still doesn't work for languages like Polish, which has three
3146 plural forms: one for nfiles == 1, one for nfiles == 2, 3, 4, 22, 23, 24, ...
3147 and one for the rest.  The GNU @code{ngettext} function solves this problem:
3148
3149 @example
3150 printf (ngettext ("%d files processed", "%d file processed", nfiles),
3151         nfiles);
3152 @end example
3153
3154
3155 @node Character Set
3156 @section Character Set
3157 @cindex character set
3158 @cindex encodings
3159 @cindex ASCII characters
3160 @cindex non-ASCII characters
3161
3162 Sticking to the ASCII character set (plain text, 7-bit characters) is
3163 preferred in GNU source code comments, text documents, and other
3164 contexts, unless there is good reason to do something else because of
3165 the application domain.  For example, if source code deals with the
3166 French Revolutionary calendar, it is OK if its literal strings contain
3167 accented characters in month names like ``Flor@'eal''.  Also, it is OK
3168 to use non-ASCII characters to represent proper names of contributors in
3169 change logs (@pxref{Change Logs}).
3170
3171 If you need to use non-ASCII characters, you should normally stick with
3172 one encoding, as one cannot in general mix encodings reliably.
3173
3174
3175 @node Quote Characters
3176 @section Quote Characters
3177 @cindex quote characters
3178 @cindex locale-specific quote characters
3179 @cindex left quote
3180 @cindex grave accent
3181
3182 In the C locale, GNU programs should stick to plain ASCII for quotation
3183 characters in messages to users: preferably 0x60 (@samp{`}) for left
3184 quotes and 0x27 (@samp{'}) for right quotes.  It is ok, but not
3185 required, to use locale-specific quotes in other locales.
3186
3187 The @uref{http://www.gnu.org/software/gnulib/, Gnulib} @code{quote} and
3188 @code{quotearg} modules provide a reasonably straightforward way to
3189 support locale-specific quote characters, as well as taking care of
3190 other issues, such as quoting a filename that itself contains a quote
3191 character.  See the Gnulib documentation for usage details.
3192
3193 In any case, the documentation for your program should clearly specify
3194 how it does quoting, if different than the preferred method of @samp{`}
3195 and @samp{'}.  This is especially important if the output of your
3196 program is ever likely to be parsed by another program.
3197
3198 Quotation characters are a difficult area in the computing world at
3199 this time: there are no true left or right quote characters in Latin1;
3200 the @samp{`} character we use was standardized there as a grave
3201 accent.  Moreover, Latin1 is still not universally usable.
3202
3203 Unicode contains the unambiguous quote characters required, and its
3204 common encoding UTF-8 is upward compatible with Latin1.  However,
3205 Unicode and UTF-8 are not universally well-supported, either.
3206
3207 This may change over the next few years, and then we will revisit
3208 this.
3209
3210
3211 @node Mmap
3212 @section Mmap
3213 @findex mmap
3214
3215 Don't assume that @code{mmap} either works on all files or fails
3216 for all files.  It may work on some files and fail on others.
3217
3218 The proper way to use @code{mmap} is to try it on the specific file for
3219 which you want to use it---and if @code{mmap} doesn't work, fall back on
3220 doing the job in another way using @code{read} and @code{write}.
3221
3222 The reason this precaution is needed is that the GNU kernel (the HURD)
3223 provides a user-extensible file system, in which there can be many
3224 different kinds of ``ordinary files.''  Many of them support
3225 @code{mmap}, but some do not.  It is important to make programs handle
3226 all these kinds of files.
3227
3228 @node Documentation
3229 @chapter Documenting Programs
3230 @cindex documentation
3231
3232 A GNU program should ideally come with full free documentation, adequate
3233 for both reference and tutorial purposes.  If the package can be
3234 programmed or extended, the documentation should cover programming or
3235 extending it, as well as just using it.
3236
3237 @menu
3238 * GNU Manuals::                 Writing proper manuals.
3239 * Doc Strings and Manuals::     Compiling doc strings doesn't make a manual.
3240 * Manual Structure Details::    Specific structure conventions.
3241 * License for Manuals::         Writing the distribution terms for a manual.
3242 * Manual Credits::              Giving credit to documentation contributors.
3243 * Printed Manuals::             Mentioning the printed manual.
3244 * NEWS File::                   NEWS files supplement manuals.
3245 * Change Logs::                 Recording changes.
3246 * Man Pages::                   Man pages are secondary.
3247 * Reading other Manuals::       How far you can go in learning
3248                                 from other manuals.
3249 @end menu
3250
3251 @node GNU Manuals
3252 @section GNU Manuals
3253
3254 The preferred document format for the GNU system is the Texinfo
3255 formatting language.  Every GNU package should (ideally) have
3256 documentation in Texinfo both for reference and for learners.  Texinfo
3257 makes it possible to produce a good quality formatted book, using
3258 @TeX{}, and to generate an Info file.  It is also possible to generate
3259 HTML output from Texinfo source.  See the Texinfo manual, either the
3260 hardcopy, or the on-line version available through @code{info} or the
3261 Emacs Info subsystem (@kbd{C-h i}).
3262
3263 Nowadays some other formats such as Docbook and Sgmltexi can be
3264 converted automatically into Texinfo.  It is ok to produce the Texinfo
3265 documentation by conversion this way, as long as it gives good results.
3266
3267 Make sure your manual is clear to a reader who knows nothing about the
3268 topic and reads it straight through.  This means covering basic topics
3269 at the beginning, and advanced topics only later.  This also means
3270 defining every specialized term when it is first used.
3271
3272 Programmers tend to carry over the structure of the program as the
3273 structure for its documentation.  But this structure is not
3274 necessarily good for explaining how to use the program; it may be
3275 irrelevant and confusing for a user.
3276
3277 Instead, the right way to structure documentation is according to the
3278 concepts and questions that a user will have in mind when reading it.
3279 This principle applies at every level, from the lowest (ordering
3280 sentences in a paragraph) to the highest (ordering of chapter topics
3281 within the manual).  Sometimes this structure of ideas matches the
3282 structure of the implementation of the software being documented---but
3283 often they are different.  An important part of learning to write good
3284 documentation is to learn to notice when you have unthinkingly
3285 structured the documentation like the implementation, stop yourself,
3286 and look for better alternatives.
3287
3288 For example, each program in the GNU system probably ought to be
3289 documented in one manual; but this does not mean each program should
3290 have its own manual.  That would be following the structure of the
3291 implementation, rather than the structure that helps the user
3292 understand.
3293
3294 Instead, each manual should cover a coherent @emph{topic}.  For example,
3295 instead of a manual for @code{diff} and a manual for @code{diff3}, we
3296 have one manual for ``comparison of files'' which covers both of those
3297 programs, as well as @code{cmp}.  By documenting these programs
3298 together, we can make the whole subject clearer.
3299
3300 The manual which discusses a program should certainly document all of
3301 the program's command-line options and all of its commands.  It should
3302 give examples of their use.  But don't organize the manual as a list
3303 of features.  Instead, organize it logically, by subtopics.  Address
3304 the questions that a user will ask when thinking about the job that
3305 the program does.  Don't just tell the reader what each feature can
3306 do---say what jobs it is good for, and show how to use it for those
3307 jobs.  Explain what is recommended usage, and what kinds of usage
3308 users should avoid.
3309
3310 In general, a GNU manual should serve both as tutorial and reference.
3311 It should be set up for convenient access to each topic through Info,
3312 and for reading straight through (appendixes aside).  A GNU manual
3313 should give a good introduction to a beginner reading through from the
3314 start, and should also provide all the details that hackers want.
3315 The Bison manual is a good example of this---please take a look at it
3316 to see what we mean.
3317
3318 That is not as hard as it first sounds.  Arrange each chapter as a
3319 logical breakdown of its topic, but order the sections, and write their
3320 text, so that reading the chapter straight through makes sense.  Do
3321 likewise when structuring the book into chapters, and when structuring a
3322 section into paragraphs.  The watchword is, @emph{at each point, address
3323 the most fundamental and important issue raised by the preceding text.}
3324
3325 If necessary, add extra chapters at the beginning of the manual which
3326 are purely tutorial and cover the basics of the subject.  These provide
3327 the framework for a beginner to understand the rest of the manual.  The
3328 Bison manual provides a good example of how to do this.
3329
3330 To serve as a reference, a manual should have an Index that list all the
3331 functions, variables, options, and important concepts that are part of
3332 the program.  One combined Index should do for a short manual, but
3333 sometimes for a complex package it is better to use multiple indices.
3334 The Texinfo manual includes advice on preparing good index entries, see
3335 @ref{Index Entries, , Making Index Entries, texinfo, GNU Texinfo}, and
3336 see @ref{Indexing Commands, , Defining the Entries of an
3337 Index, texinfo, GNU Texinfo}.
3338
3339 Don't use Unix man pages as a model for how to write GNU documentation;
3340 most of them are terse, badly structured, and give inadequate
3341 explanation of the underlying concepts.  (There are, of course, some
3342 exceptions.)  Also, Unix man pages use a particular format which is
3343 different from what we use in GNU manuals.
3344
3345 Please include an email address in the manual for where to report
3346 bugs @emph{in the text of the manual}.
3347
3348 Please do not use the term ``pathname'' that is used in Unix
3349 documentation; use ``file name'' (two words) instead.  We use the term
3350 ``path'' only for search paths, which are lists of directory names.
3351
3352 Please do not use the term ``illegal'' to refer to erroneous input to
3353 a computer program.  Please use ``invalid'' for this, and reserve the
3354 term ``illegal'' for activities prohibited by law.
3355
3356 Please do not write @samp{()} after a function name just to indicate
3357 it is a function.  @code{foo ()} is not a function, it is a function
3358 call with no arguments.
3359
3360 @node Doc Strings and Manuals
3361 @section Doc Strings and Manuals
3362
3363 Some programming systems, such as Emacs, provide a documentation string
3364 for each function, command or variable.  You may be tempted to write a
3365 reference manual by compiling the documentation strings and writing a
3366 little additional text to go around them---but you must not do it.  That
3367 approach is a fundamental mistake.  The text of well-written
3368 documentation strings will be entirely wrong for a manual.
3369
3370 A documentation string needs to stand alone---when it appears on the
3371 screen, there will be no other text to introduce or explain it.
3372 Meanwhile, it can be rather informal in style.
3373
3374 The text describing a function or variable in a manual must not stand
3375 alone; it appears in the context of a section or subsection.  Other text
3376 at the beginning of the section should explain some of the concepts, and
3377 should often make some general points that apply to several functions or
3378 variables.  The previous descriptions of functions and variables in the
3379 section will also have given information about the topic.  A description
3380 written to stand alone would repeat some of that information; this
3381 redundancy looks bad.  Meanwhile, the informality that is acceptable in
3382 a documentation string is totally unacceptable in a manual.
3383
3384 The only good way to use documentation strings in writing a good manual
3385 is to use them as a source of information for writing good text.
3386
3387 @node Manual Structure Details
3388 @section Manual Structure Details
3389 @cindex manual structure
3390
3391 The title page of the manual should state the version of the programs or
3392 packages documented in the manual.  The Top node of the manual should
3393 also contain this information.  If the manual is changing more
3394 frequently than or independent of the program, also state a version
3395 number for the manual in both of these places.
3396
3397 Each program documented in the manual should have a node named
3398 @samp{@var{program} Invocation} or @samp{Invoking @var{program}}.  This
3399 node (together with its subnodes, if any) should describe the program's
3400 command line arguments and how to run it (the sort of information people
3401 would look for in a man page).  Start with an @samp{@@example}
3402 containing a template for all the options and arguments that the program
3403 uses.
3404
3405 Alternatively, put a menu item in some menu whose item name fits one of
3406 the above patterns.  This identifies the node which that item points to
3407 as the node for this purpose, regardless of the node's actual name.
3408
3409 The @samp{--usage} feature of the Info reader looks for such a node
3410 or menu item in order to find the relevant text, so it is essential
3411 for every Texinfo file to have one.
3412
3413 If one manual describes several programs, it should have such a node for
3414 each program described in the manual.
3415
3416 @node License for Manuals
3417 @section License for Manuals
3418 @cindex license for manuals
3419
3420 Please use the GNU Free Documentation License for all GNU manuals that
3421 are more than a few pages long.  Likewise for a collection of short
3422 documents---you only need one copy of the GNU FDL for the whole
3423 collection.  For a single short document, you can use a very permissive
3424 non-copyleft license, to avoid taking up space with a long license.
3425
3426 See @uref{http://www.gnu.org/copyleft/fdl-howto.html} for more explanation
3427 of how to employ the GFDL.
3428
3429 Note that it is not obligatory to include a copy of the GNU GPL or GNU
3430 LGPL in a manual whose license is neither the GPL nor the LGPL.  It can
3431 be a good idea to include the program's license in a large manual; in a
3432 short manual, whose size would be increased considerably by including
3433 the program's license, it is probably better not to include it.
3434
3435 @node Manual Credits
3436 @section Manual Credits
3437 @cindex credits for manuals
3438
3439 Please credit the principal human writers of the manual as the authors,
3440 on the title page of the manual.  If a company sponsored the work, thank
3441 the company in a suitable place in the manual, but do not cite the
3442 company as an author.
3443
3444 @node Printed Manuals
3445 @section Printed Manuals
3446
3447 The FSF publishes some GNU manuals in printed form.  To encourage sales
3448 of these manuals, the on-line versions of the manual should mention at
3449 the very start that the printed manual is available and should point at
3450 information for getting it---for instance, with a link to the page
3451 @url{http://www.gnu.org/order/order.html}.  This should not be included
3452 in the printed manual, though, because there it is redundant.
3453
3454 It is also useful to explain in the on-line forms of the manual how the
3455 user can print out the manual from the sources.
3456
3457 @node NEWS File
3458 @section The NEWS File
3459 @cindex @file{NEWS} file
3460
3461 In addition to its manual, the package should have a file named
3462 @file{NEWS} which contains a list of user-visible changes worth
3463 mentioning.  In each new release, add items to the front of the file and
3464 identify the version they pertain to.  Don't discard old items; leave
3465 them in the file after the newer items.  This way, a user upgrading from
3466 any previous version can see what is new.
3467
3468 If the @file{NEWS} file gets very long, move some of the older items
3469 into a file named @file{ONEWS} and put a note at the end referring the
3470 user to that file.
3471
3472 @node Change Logs
3473 @section Change Logs
3474 @cindex change logs
3475
3476 Keep a change log to describe all the changes made to program source
3477 files.  The purpose of this is so that people investigating bugs in the
3478 future will know about the changes that might have introduced the bug.
3479 Often a new bug can be found by looking at what was recently changed.
3480 More importantly, change logs can help you eliminate conceptual
3481 inconsistencies between different parts of a program, by giving you a
3482 history of how the conflicting concepts arose and who they came from.
3483
3484 @menu
3485 * Change Log Concepts::
3486 * Style of Change Logs::
3487 * Simple Changes::
3488 * Conditional Changes::
3489 * Indicating the Part Changed::
3490 @end menu
3491
3492 @node Change Log Concepts
3493 @subsection Change Log Concepts
3494
3495 You can think of the change log as a conceptual ``undo list'' which
3496 explains how earlier versions were different from the current version.
3497 People can see the current version; they don't need the change log
3498 to tell them what is in it.  What they want from a change log is a
3499 clear explanation of how the earlier version differed.
3500
3501 The change log file is normally called @file{ChangeLog} and covers an
3502 entire directory.  Each directory can have its own change log, or a
3503 directory can use the change log of its parent directory---it's up to
3504 you.
3505
3506 Another alternative is to record change log information with a version
3507 control system such as RCS or CVS.  This can be converted automatically
3508 to a @file{ChangeLog} file using @code{rcs2log}; in Emacs, the command
3509 @kbd{C-x v a} (@code{vc-update-change-log}) does the job.
3510
3511 There's no need to describe the full purpose of the changes or how
3512 they work together.  However, sometimes it is useful to write one line
3513 to describe the overall purpose of a change or a batch of changes.  If
3514 you think that a change calls for explanation, you're probably right.
3515 Please do explain it---but please put the full explanation in comments
3516 in the code, where people will see it whenever they see the code.  For
3517 example, ``New function'' is enough for the change log when you add a
3518 function, because there should be a comment before the function
3519 definition to explain what it does.
3520
3521 In the past, we recommended not mentioning changes in non-software
3522 files (manuals, help files, etc.) in change logs.  However, we've been
3523 advised that it is a good idea to include them, for the sake of
3524 copyright records.
3525
3526 The easiest way to add an entry to @file{ChangeLog} is with the Emacs
3527 command @kbd{M-x add-change-log-entry}.  An entry should have an
3528 asterisk, the name of the changed file, and then in parentheses the name
3529 of the changed functions, variables or whatever, followed by a colon.
3530 Then describe the changes you made to that function or variable.
3531
3532 @node Style of Change Logs
3533 @subsection Style of Change Logs
3534 @cindex change logs, style
3535
3536 Here are some simple examples of change log entries, starting with the
3537 header line that says who made the change and when it was installed,
3538 followed by descriptions of specific changes.  (These examples are
3539 drawn from Emacs and GCC.)
3540
3541 @example
3542 1998-08-17  Richard Stallman  <rms@@gnu.org>
3543
3544 * register.el (insert-register): Return nil.
3545 (jump-to-register): Likewise.
3546
3547 * sort.el (sort-subr): Return nil.
3548
3549 * tex-mode.el (tex-bibtex-file, tex-file, tex-region):
3550 Restart the tex shell if process is gone or stopped.
3551 (tex-shell-running): New function.
3552
3553 * expr.c (store_one_arg): Round size up for move_block_to_reg.
3554 (expand_call): Round up when emitting USE insns.
3555 * stmt.c (assign_parms): Round size up for move_block_from_reg.
3556 @end example
3557
3558 It's important to name the changed function or variable in full.  Don't
3559 abbreviate function or variable names, and don't combine them.
3560 Subsequent maintainers will often search for a function name to find all
3561 the change log entries that pertain to it; if you abbreviate the name,
3562 they won't find it when they search.
3563
3564 For example, some people are tempted to abbreviate groups of function
3565 names by writing @samp{* register.el (@{insert,jump-to@}-register)};
3566 this is not a good idea, since searching for @code{jump-to-register} or
3567 @code{insert-register} would not find that entry.
3568
3569 Separate unrelated change log entries with blank lines.  When two
3570 entries represent parts of the same change, so that they work together,
3571 then don't put blank lines between them.  Then you can omit the file
3572 name and the asterisk when successive entries are in the same file.
3573
3574 Break long lists of function names by closing continued lines with
3575 @samp{)}, rather than @samp{,}, and opening the continuation with
3576 @samp{(} as in this example:
3577
3578 @example
3579 * keyboard.c (menu_bar_items, tool_bar_items)
3580 (Fexecute_extended_command): Deal with `keymap' property.
3581 @end example
3582
3583 When you install someone else's changes, put the contributor's name in
3584 the change log entry rather than in the text of the entry.  In other
3585 words, write this:
3586
3587 @example
3588 2002-07-14  John Doe  <jdoe@@gnu.org>
3589
3590         * sewing.c: Make it sew.
3591 @end example
3592
3593 @noindent
3594 rather than this:
3595
3596 @example
3597 2002-07-14  Usual Maintainer  <usual@@gnu.org>
3598
3599         * sewing.c: Make it sew.  Patch by jdoe@@gnu.org.
3600 @end example
3601
3602 As for the date, that should be the date you applied the change.
3603
3604 @node Simple Changes
3605 @subsection Simple Changes
3606
3607 Certain simple kinds of changes don't need much detail in the change
3608 log.
3609
3610 When you change the calling sequence of a function in a simple fashion,
3611 and you change all the callers of the function to use the new calling
3612 sequence, there is no need to make individual entries for all the
3613 callers that you changed.  Just write in the entry for the function
3614 being called, ``All callers changed''---like this:
3615
3616 @example
3617 * keyboard.c (Fcommand_execute): New arg SPECIAL.
3618 All callers changed.
3619 @end example
3620
3621 When you change just comments or doc strings, it is enough to write an
3622 entry for the file, without mentioning the functions.  Just ``Doc
3623 fixes'' is enough for the change log.
3624
3625 There's no technical need to make change log entries for documentation
3626 files.  This is because documentation is not susceptible to bugs that
3627 are hard to fix.  Documentation does not consist of parts that must
3628 interact in a precisely engineered fashion.  To correct an error, you
3629 need not know the history of the erroneous passage; it is enough to
3630 compare what the documentation says with the way the program actually
3631 works.
3632
3633 However, you should keep change logs for documentation files when the
3634 project gets copyright assignments from its contributors, so as to
3635 make the records of authorship more accurate.
3636
3637 @node Conditional Changes
3638 @subsection Conditional Changes
3639 @cindex conditional changes, and change logs
3640 @cindex change logs, conditional changes
3641
3642 C programs often contain compile-time @code{#if} conditionals.  Many
3643 changes are conditional; sometimes you add a new definition which is
3644 entirely contained in a conditional.  It is very useful to indicate in
3645 the change log the conditions for which the change applies.
3646
3647 Our convention for indicating conditional changes is to use square
3648 brackets around the name of the condition.
3649
3650 Here is a simple example, describing a change which is conditional but
3651 does not have a function or entity name associated with it:
3652
3653 @example
3654 * xterm.c [SOLARIS2]: Include string.h.
3655 @end example
3656
3657 Here is an entry describing a new definition which is entirely
3658 conditional.  This new definition for the macro @code{FRAME_WINDOW_P} is
3659 used only when @code{HAVE_X_WINDOWS} is defined:
3660
3661 @example
3662 * frame.h [HAVE_X_WINDOWS] (FRAME_WINDOW_P): Macro defined.
3663 @end example
3664
3665 Here is an entry for a change within the function @code{init_display},
3666 whose definition as a whole is unconditional, but the changes themselves
3667 are contained in a @samp{#ifdef HAVE_LIBNCURSES} conditional:
3668
3669 @example
3670 * dispnew.c (init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
3671 @end example
3672
3673 Here is an entry for a change that takes affect only when
3674 a certain macro is @emph{not} defined:
3675
3676 @example
3677 (gethostname) [!HAVE_SOCKETS]: Replace with winsock version.
3678 @end example
3679
3680 @node Indicating the Part Changed
3681 @subsection Indicating the Part Changed
3682
3683 Indicate the part of a function which changed by using angle brackets
3684 enclosing an indication of what the changed part does.  Here is an entry
3685 for a change in the part of the function @code{sh-while-getopts} that
3686 deals with @code{sh} commands:
3687
3688 @example
3689 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
3690 user-specified option string is empty.
3691 @end example
3692
3693
3694 @node Man Pages
3695 @section Man Pages
3696 @cindex man pages
3697
3698 In the GNU project, man pages are secondary.  It is not necessary or
3699 expected for every GNU program to have a man page, but some of them do.
3700 It's your choice whether to include a man page in your program.
3701
3702 When you make this decision, consider that supporting a man page
3703 requires continual effort each time the program is changed.  The time
3704 you spend on the man page is time taken away from more useful work.
3705
3706 For a simple program which changes little, updating the man page may be
3707 a small job.  Then there is little reason not to include a man page, if
3708 you have one.
3709
3710 For a large program that changes a great deal, updating a man page may
3711 be a substantial burden.  If a user offers to donate a man page, you may
3712 find this gift costly to accept.  It may be better to refuse the man
3713 page unless the same person agrees to take full responsibility for
3714 maintaining it---so that you can wash your hands of it entirely.  If
3715 this volunteer later ceases to do the job, then don't feel obliged to
3716 pick it up yourself; it may be better to withdraw the man page from the
3717 distribution until someone else agrees to update it.
3718
3719 When a program changes only a little, you may feel that the
3720 discrepancies are small enough that the man page remains useful without
3721 updating.  If so, put a prominent note near the beginning of the man
3722 page explaining that you don't maintain it and that the Texinfo manual
3723 is more authoritative.  The note should say how to access the Texinfo
3724 documentation.
3725
3726 Be sure that man pages include a copyright statement and free license.
3727 The simple all-permissive license is appropriate for simple man pages
3728 (@pxref{License Notices for Other Files,,,maintain,Information for GNU
3729 Maintainers}).
3730
3731 For long man pages, with enough explanation and documentation that
3732 they can be considered true manuals, use the GFDL (@pxref{License for
3733 Manuals}).
3734
3735 Finally, the GNU help2man program
3736 (@uref{http://www.gnu.org/software/help2man/}) is one way to automate
3737 generation of a man page, in this case from @option{--help} output.
3738 This is sufficient in many cases.
3739
3740 @node Reading other Manuals
3741 @section Reading other Manuals
3742
3743 There may be non-free books or documentation files that describe the
3744 program you are documenting.
3745
3746 It is ok to use these documents for reference, just as the author of a
3747 new algebra textbook can read other books on algebra.  A large portion
3748 of any non-fiction book consists of facts, in this case facts about how
3749 a certain program works, and these facts are necessarily the same for
3750 everyone who writes about the subject.  But be careful not to copy your
3751 outline structure, wording, tables or examples from preexisting non-free
3752 documentation.  Copying from free documentation may be ok; please check
3753 with the FSF about the individual case.
3754
3755 @node Managing Releases
3756 @chapter The Release Process
3757 @cindex releasing
3758
3759 Making a release is more than just bundling up your source files in a
3760 tar file and putting it up for FTP.  You should set up your software so
3761 that it can be configured to run on a variety of systems.  Your Makefile
3762 should conform to the GNU standards described below, and your directory
3763 layout should also conform to the standards discussed below.  Doing so
3764 makes it easy to include your package into the larger framework of
3765 all GNU software.
3766
3767 @menu
3768 * Configuration::               How configuration of GNU packages should work.
3769 * Makefile Conventions::        Makefile conventions.
3770 * Releases::                    Making releases
3771 @end menu
3772
3773 @node Configuration
3774 @section How Configuration Should Work
3775 @cindex program configuration
3776
3777 @pindex configure
3778 Each GNU distribution should come with a shell script named
3779 @code{configure}.  This script is given arguments which describe the
3780 kind of machine and system you want to compile the program for.
3781 The @code{configure} script must record the configuration options so
3782 that they affect compilation.
3783
3784 The description here is the specification of the interface for the
3785 @code{configure} script in GNU packages.  Many packages implement it
3786 using GNU Autoconf (@pxref{Top,, Introduction, autoconf, Autoconf})
3787 and/or GNU Automake (@pxref{Top,, Introduction, automake, Automake}),
3788 but you do not have to use these tools.  You can implement it any way
3789 you like; for instance, by making @code{configure} be a wrapper around
3790 a completely different configuration system.
3791
3792 Another way for the @code{configure} script to operate is to make a
3793 link from a standard name such as @file{config.h} to the proper
3794 configuration file for the chosen system.  If you use this technique,
3795 the distribution should @emph{not} contain a file named
3796 @file{config.h}.  This is so that people won't be able to build the
3797 program without configuring it first.
3798
3799 Another thing that @code{configure} can do is to edit the Makefile.  If
3800 you do this, the distribution should @emph{not} contain a file named
3801 @file{Makefile}.  Instead, it should include a file @file{Makefile.in} which
3802 contains the input used for editing.  Once again, this is so that people
3803 won't be able to build the program without configuring it first.
3804
3805 If @code{configure} does write the @file{Makefile}, then @file{Makefile}
3806 should have a target named @file{Makefile} which causes @code{configure}
3807 to be rerun, setting up the same configuration that was set up last
3808 time.  The files that @code{configure} reads should be listed as
3809 dependencies of @file{Makefile}.
3810
3811 All the files which are output from the @code{configure} script should
3812 have comments at the beginning explaining that they were generated
3813 automatically using @code{configure}.  This is so that users won't think
3814 of trying to edit them by hand.
3815
3816 The @code{configure} script should write a file named @file{config.status}
3817 which describes which configuration options were specified when the
3818 program was last configured.  This file should be a shell script which,
3819 if run, will recreate the same configuration.
3820
3821 The @code{configure} script should accept an option of the form
3822 @samp{--srcdir=@var{dirname}} to specify the directory where sources are found
3823 (if it is not the current directory).  This makes it possible to build
3824 the program in a separate directory, so that the actual source directory
3825 is not modified.
3826
3827 If the user does not specify @samp{--srcdir}, then @code{configure} should
3828 check both @file{.} and @file{..} to see if it can find the sources.  If
3829 it finds the sources in one of these places, it should use them from
3830 there.  Otherwise, it should report that it cannot find the sources, and
3831 should exit with nonzero status.
3832
3833 Usually the easy way to support @samp{--srcdir} is by editing a
3834 definition of @code{VPATH} into the Makefile.  Some rules may need to
3835 refer explicitly to the specified source directory.  To make this
3836 possible, @code{configure} can add to the Makefile a variable named
3837 @code{srcdir} whose value is precisely the specified directory.
3838
3839 In addition, the @samp{configure} script should take options
3840 corresponding to most of the standard directory variables
3841 (@pxref{Directory Variables}).  Here is the list:
3842
3843 @example
3844 --prefix --exec-prefix --bindir --sbindir --libexecdir --sysconfdir
3845 --sharedstatedir --localstatedir --libdir --includedir --oldincludedir
3846 --datarootdir --datadir --infodir --localedir --mandir --docdir
3847 --htmldir --dvidir --pdfdir --psdir
3848 @end example
3849
3850 The @code{configure} script should also take an argument which specifies the
3851 type of system to build the program for.  This argument should look like
3852 this:
3853
3854 @example
3855 @var{cpu}-@var{company}-@var{system}
3856 @end example
3857
3858 For example, an Athlon-based GNU/Linux system might be
3859 @samp{i686-pc-linux-gnu}.
3860
3861 The @code{configure} script needs to be able to decode all plausible
3862 alternatives for how to describe a machine.  Thus,
3863 @samp{athlon-pc-gnu/linux} would be a valid alias.  There is a shell
3864 script called
3865 @uref{http://git.savannah.gnu.org/@/gitweb/@/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD,
3866 @file{config.sub}} that you can use as a subroutine to validate system
3867 types and canonicalize aliases.
3868
3869 The @code{configure} script should also take the option
3870 @option{--build=@var{buildtype}}, which should be equivalent to a
3871 plain @var{buildtype} argument.  For example, @samp{configure
3872 --build=i686-pc-linux-gnu} is equivalent to @samp{configure
3873 i686-pc-linux-gnu}.  When the build type is not specified by an option
3874 or argument, the @code{configure} script should normally guess it using
3875 the shell script
3876 @uref{http://git.savannah.gnu.org/@/gitweb/@/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD,
3877 @file{config.guess}}.
3878
3879 @cindex optional features, configure-time
3880 Other options are permitted to specify in more detail the software
3881 or hardware present on the machine, to include or exclude optional parts
3882 of the package, or to adjust the name of some tools or arguments to them:
3883
3884 @table @samp
3885 @item --enable-@var{feature}@r{[}=@var{parameter}@r{]}
3886 Configure the package to build and install an optional user-level
3887 facility called @var{feature}.  This allows users to choose which
3888 optional features to include.  Giving an optional @var{parameter} of
3889 @samp{no} should omit @var{feature}, if it is built by default.
3890
3891 No @samp{--enable} option should @strong{ever} cause one feature to
3892 replace another.  No @samp{--enable} option should ever substitute one
3893 useful behavior for another useful behavior.  The only proper use for
3894 @samp{--enable} is for questions of whether to build part of the program
3895 or exclude it.
3896
3897 @item --with-@var{package}
3898 @c @r{[}=@var{parameter}@r{]}
3899 The package @var{package} will be installed, so configure this package
3900 to work with @var{package}.
3901
3902 @c  Giving an optional @var{parameter} of
3903 @c @samp{no} should omit @var{package}, if it is used by default.
3904
3905 Possible values of @var{package} include
3906 @samp{gnu-as} (or @samp{gas}), @samp{gnu-ld}, @samp{gnu-libc},
3907 @samp{gdb},
3908 @samp{x},
3909 and
3910 @samp{x-toolkit}.
3911
3912 Do not use a @samp{--with} option to specify the file name to use to
3913 find certain files.  That is outside the scope of what @samp{--with}
3914 options are for.
3915
3916 @item @var{variable}=@var{value}
3917 Set the value of the variable @var{variable} to @var{value}.  This is
3918 used to override the default values of commands or arguments in the
3919 build process.  For example, the user could issue @samp{configure
3920 CFLAGS=-g CXXFLAGS=-g} to build with debugging information and without
3921 the default optimization.
3922
3923 Specifying variables as arguments to @code{configure}, like this:
3924 @example
3925 ./configure CC=gcc
3926 @end example
3927 is preferable to setting them in environment variables:
3928 @example
3929 CC=gcc ./configure
3930 @end example
3931 as it helps to recreate the same configuration later with
3932 @file{config.status}.  However, both methods should be supported.
3933 @end table
3934
3935 All @code{configure} scripts should accept all of the ``detail''
3936 options and the variable settings, whether or not they make any
3937 difference to the particular package at hand.  In particular, they
3938 should accept any option that starts with @samp{--with-} or
3939 @samp{--enable-}.  This is so users will be able to configure an
3940 entire GNU source tree at once with a single set of options.
3941
3942 You will note that the categories @samp{--with-} and @samp{--enable-}
3943 are narrow: they @strong{do not} provide a place for any sort of option
3944 you might think of.  That is deliberate.  We want to limit the possible
3945 configuration options in GNU software.  We do not want GNU programs to
3946 have idiosyncratic configuration options.
3947
3948 Packages that perform part of the compilation process may support
3949 cross-compilation.  In such a case, the host and target machines for the
3950 program may be different.
3951
3952 The @code{configure} script should normally treat the specified type of
3953 system as both the host and the target, thus producing a program which
3954 works for the same type of machine that it runs on.
3955
3956 To compile a program to run on a host type that differs from the build
3957 type, use the configure option @option{--host=@var{hosttype}}, where
3958 @var{hosttype} uses the same syntax as @var{buildtype}.  The host type
3959 normally defaults to the build type.
3960
3961 To configure a cross-compiler, cross-assembler, or what have you, you
3962 should specify a target different from the host, using the configure
3963 option @samp{--target=@var{targettype}}.  The syntax for
3964 @var{targettype} is the same as for the host type.  So the command would
3965 look like this:
3966
3967 @example
3968 ./configure --host=@var{hosttype} --target=@var{targettype}
3969 @end example
3970
3971 The target type normally defaults to the host type.
3972 Programs for which cross-operation is not meaningful need not accept the
3973 @samp{--target} option, because configuring an entire operating system for
3974 cross-operation is not a meaningful operation.
3975
3976 Some programs have ways of configuring themselves automatically.  If
3977 your program is set up to do this, your @code{configure} script can simply
3978 ignore most of its arguments.
3979
3980 @comment The makefile standards are in a separate file that is also
3981 @comment included by make.texinfo.  Done by roland@gnu.ai.mit.edu on 1/6/93.
3982 @comment For this document, turn chapters into sections, etc.
3983 @lowersections
3984 @include make-stds.texi
3985 @raisesections
3986
3987 @node Releases
3988 @section Making Releases
3989 @cindex packaging
3990
3991 You should identify each release with a pair of version numbers, a
3992 major version and a minor.  We have no objection to using more than
3993 two numbers, but it is very unlikely that you really need them.
3994
3995 Package the distribution of @code{Foo version 69.96} up in a gzipped tar
3996 file with the name @file{foo-69.96.tar.gz}.  It should unpack into a
3997 subdirectory named @file{foo-69.96}.
3998
3999 Building and installing the program should never modify any of the files
4000 contained in the distribution.  This means that all the files that form
4001 part of the program in any way must be classified into @dfn{source
4002 files} and @dfn{non-source files}.  Source files are written by humans
4003 and never changed automatically; non-source files are produced from
4004 source files by programs under the control of the Makefile.
4005
4006 @cindex @file{README} file
4007 The distribution should contain a file named @file{README} which gives
4008 the name of the package, and a general description of what it does.  It
4009 is also good to explain the purpose of each of the first-level
4010 subdirectories in the package, if there are any.  The @file{README} file
4011 should either state the version number of the package, or refer to where
4012 in the package it can be found.
4013
4014 The @file{README} file should refer to the file @file{INSTALL}, which
4015 should contain an explanation of the installation procedure.
4016
4017 The @file{README} file should also refer to the file which contains the
4018 copying conditions.  The GNU GPL, if used, should be in a file called
4019 @file{COPYING}.  If the GNU LGPL is used, it should be in a file called
4020 @file{COPYING.LESSER}.
4021
4022 Naturally, all the source files must be in the distribution.  It is okay
4023 to include non-source files in the distribution, provided they are
4024 up-to-date and machine-independent, so that building the distribution
4025 normally will never modify them.  We commonly include non-source files
4026 produced by Bison, @code{lex}, @TeX{}, and @code{makeinfo}; this helps avoid
4027 unnecessary dependencies between our distributions, so that users can
4028 install whichever packages they want to install.
4029
4030 Non-source files that might actually be modified by building and
4031 installing the program should @strong{never} be included in the
4032 distribution.  So if you do distribute non-source files, always make
4033 sure they are up to date when you make a new distribution.
4034
4035 Make sure that all the files in the distribution are world-readable, and
4036 that directories are world-readable and world-searchable (octal mode 755).
4037 We used to recommend that all directories in the distribution also be
4038 world-writable (octal mode 777), because ancient versions of @code{tar}
4039 would otherwise not cope when extracting the archive as an unprivileged
4040 user.  That can easily lead to security issues when creating the archive,
4041 however, so now we recommend against that.
4042
4043 Don't include any symbolic links in the distribution itself.  If the tar
4044 file contains symbolic links, then people cannot even unpack it on
4045 systems that don't support symbolic links.  Also, don't use multiple
4046 names for one file in different directories, because certain file
4047 systems cannot handle this and that prevents unpacking the
4048 distribution.
4049
4050 Try to make sure that all the file names will be unique on MS-DOS.  A
4051 name on MS-DOS consists of up to 8 characters, optionally followed by a
4052 period and up to three characters.  MS-DOS will truncate extra
4053 characters both before and after the period.  Thus,
4054 @file{foobarhacker.c} and @file{foobarhacker.o} are not ambiguous; they
4055 are truncated to @file{foobarha.c} and @file{foobarha.o}, which are
4056 distinct.
4057
4058 @cindex @file{texinfo.tex}, in a distribution
4059 Include in your distribution a copy of the @file{texinfo.tex} you used
4060 to test print any @file{*.texinfo} or @file{*.texi} files.
4061
4062 Likewise, if your program uses small GNU software packages like regex,
4063 getopt, obstack, or termcap, include them in the distribution file.
4064 Leaving them out would make the distribution file a little smaller at
4065 the expense of possible inconvenience to a user who doesn't know what
4066 other files to get.
4067
4068 @node References
4069 @chapter References to Non-Free Software and Documentation
4070 @cindex references to non-free material
4071
4072 A GNU program should not recommend, promote, or grant legitimacy to
4073 the use of any non-free program.  Proprietary software is a social and
4074 ethical problem, and our aim is to put an end to that problem.  We
4075 can't stop some people from writing proprietary programs, or stop
4076 other people from using them, but we can and should refuse to
4077 advertise them to new potential customers, or to give the public the
4078 idea that their existence is ethical.
4079
4080 The GNU definition of free software is found on the GNU web site at
4081 @url{http://www.gnu.org/@/philosophy/@/free-sw.html}, and the definition
4082 of free documentation is found at
4083 @url{http://www.gnu.org/@/philosophy/@/free-doc.html}.  The terms ``free''
4084 and ``non-free'', used in this document, refer to those definitions.
4085
4086 A list of important licenses and whether they qualify as free is in
4087 @url{http://www.gnu.org/@/licenses/@/license-list.html}.  If it is not
4088 clear whether a license qualifies as free, please ask the GNU Project
4089 by writing to @email{licensing@@gnu.org}.  We will answer, and if the
4090 license is an important one, we will add it to the list.
4091
4092 When a non-free program or system is well known, you can mention it in
4093 passing---that is harmless, since users who might want to use it
4094 probably already know about it.  For instance, it is fine to explain
4095 how to build your package on top of some widely used non-free
4096 operating system, or how to use it together with some widely used
4097 non-free program.
4098
4099 However, you should give only the necessary information to help those
4100 who already use the non-free program to use your program with
4101 it---don't give, or refer to, any further information about the
4102 proprietary program, and don't imply that the proprietary program
4103 enhances your program, or that its existence is in any way a good
4104 thing.  The goal should be that people already using the proprietary
4105 program will get the advice they need about how to use your free
4106 program with it, while people who don't already use the proprietary
4107 program will not see anything likely to lead them to take an interest
4108 in it.
4109
4110 If a non-free program or system is obscure in your program's domain,
4111 your program should not mention or support it at all, since doing so
4112 would tend to popularize the non-free program more than it popularizes
4113 your program.  (You cannot hope to find many additional users for your
4114 program among the users of Foobar, if the existence of Foobar is not
4115 generally known among people who might want to use your program.)
4116
4117 Sometimes a program is free software in itself but depends on a
4118 non-free platform in order to run.  For instance, many Java programs
4119 depend on some non-free Java libraries.  To recommend or promote such
4120 a program is to promote the other programs it needs.  This is why we
4121 are careful about listing Java programs in the Free Software
4122 Directory: we don't want to promote the non-free Java libraries.
4123
4124 We hope this particular problem with Java will be gone by and by, as
4125 we replace the remaining non-free standard Java libraries with free
4126 software, but the general principle will remain the same: don't
4127 recommend, promote or legitimize programs that depend on non-free
4128 software to run.
4129
4130 Some free programs strongly encourage the use of non-free software.  A
4131 typical example is @command{mplayer}.  It is free software in itself,
4132 and the free code can handle some kinds of files.  However,
4133 @command{mplayer} recommends use of non-free codecs for other kinds of
4134 files, and users that install @command{mplayer} are very likely to
4135 install those codecs along with it.  To recommend @command{mplayer}
4136 is, in effect, to promote use of the non-free codecs.
4137
4138 Thus, you should not recommend programs that strongly encourage the
4139 use of non-free software.  This is why we do not list
4140 @command{mplayer} in the Free Software Directory.
4141
4142 A GNU package should not refer the user to any non-free documentation
4143 for free software.  Free documentation that can be included in free
4144 operating systems is essential for completing the GNU system, or any
4145 free operating system, so encouraging it is a priority; to recommend
4146 use of documentation that we are not allowed to include undermines the
4147 impetus for the community to produce documentation that we can
4148 include.  So GNU packages should never recommend non-free
4149 documentation.
4150
4151 By contrast, it is ok to refer to journal articles and textbooks in
4152 the comments of a program for explanation of how it functions, even
4153 though they are non-free.  This is because we don't include such
4154 things in the GNU system even if they are free---they are outside the
4155 scope of what a software distribution needs to include.
4156
4157 Referring to a web site that describes or recommends a non-free
4158 program is promoting that program, so please do not make links (or
4159 mention by name) web sites that contain such material.  This policy is
4160 relevant particularly for the web pages for a GNU package.
4161
4162 Following links from nearly any web site can lead eventually to
4163 non-free software; this is inherent in the nature of the web.  So it
4164 makes no sense to criticize a site for having such links.  As long as
4165 the site does not itself recommend a non-free program, there is no
4166 need to consider the question of the sites that it links to for other
4167 reasons.
4168
4169 Thus, for example, you should not refer to AT&T's web site if that
4170 recommends AT&T's non-free software packages; you should not refer to
4171 a site that links to AT&T's site presenting it as a place to get some
4172 non-free program, because that link recommends and legitimizes the
4173 non-free program.  However, that a site contains a link to AT&T's web
4174 site for some other purpose (such as long-distance telephone service)
4175 is not an objection against it.
4176
4177 @node GNU Free Documentation License
4178 @appendix GNU Free Documentation License
4179
4180 @cindex FDL, GNU Free Documentation License
4181 @include fdl.texi
4182
4183 @node Index
4184 @unnumbered Index
4185 @printindex cp
4186
4187 @bye
4188
4189 Local variables:
4190 eval: (add-hook 'write-file-hooks 'time-stamp)
4191 time-stamp-start: "@set lastupdate "
4192 time-stamp-end: "$"
4193 time-stamp-format: "%:b %:d, %:y"
4194 compile-command: "cd work.s && make"
4195 End: