comparison doc/standards.texi @ 14242:75e682a9ca23

autoupdate
author Karl Berry <karl@freefriends.org>
date Fri, 28 Jan 2011 16:41:34 -0800
parents 04a4c0caf2d2
children 19e0538d66eb
comparison
equal deleted inserted replaced
14241:36eacd15d26a 14242:75e682a9ca23
1 \input texinfo @c -*-texinfo-*- 1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header 2 @c %**start of header
3 @setfilename standards.info 3 @setfilename standards.info
4 @settitle GNU Coding Standards 4 @settitle GNU Coding Standards
5 @c This date is automagically updated when you save this file: 5 @c This date is automagically updated when you save this file:
6 @set lastupdate September 9, 2010 6 @set lastupdate January 27, 2011
7 @c %**end of header 7 @c %**end of header
8 8
9 @dircategory GNU organization 9 @dircategory GNU organization
10 @direntry 10 @direntry
11 * Standards: (standards). GNU coding standards. 11 * Standards: (standards). GNU coding standards.
25 25
26 @copying 26 @copying
27 The GNU coding standards, last updated @value{lastupdate}. 27 The GNU coding standards, last updated @value{lastupdate}.
28 28
29 Copyright @copyright{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 29 Copyright @copyright{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
30 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software 30 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
31 Foundation, Inc. 31 Free Software Foundation, Inc.
32 32
33 Permission is granted to copy, distribute and/or modify this document 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 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 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 36 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
701 @end example 701 @end example
702 702
703 @noindent 703 @noindent
704 or by using the @code{mkstemps} function from libiberty. 704 or by using the @code{mkstemps} function from libiberty.
705 705
706 In bash, use @code{set -C} to avoid this problem. 706 In bash, use @code{set -C} (long name @code{noclobber}) to avoid this
707 problem. In addition, the @code{mktemp} utility is a more general
708 solution for creating temporary files from shell scripts
709 (@pxref{mktemp invocation,,, coreutils, GNU Coreutils}).
710
707 711
708 @node Libraries 712 @node Libraries
709 @section Library Behavior 713 @section Library Behavior
710 @cindex libraries 714 @cindex libraries
711 715