package, showing practices that may be useful for GNU projects.
Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
- 2002, 2004, 2005 Free Software Foundation, Inc.
+ 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
Mailing list: bug-hello@gnu.org
- please use this list for all discussion: bug reports, enhancements, etc.
- archived at: http://lists.gnu.org/pipermail/bug-hello
-- anyone is welcome to join the list; to do so, visit:
+- anyone is welcome to join the list; to do so, visit
http://lists.gnu.org/mailman/listinfo/bug-hello
- there is no corresponding newsgroup.
Bug reports:
Please include enough information for the maintainers to reproduce the
problem. Generally speaking, that means:
-- the contents of any input files necessary to reproduce the bug (crucial!).
+- the contents of any input files necessary to reproduce the bug
+ and command line invocations of the program(s) involved (crucial!).
- a description of the problem and any samples of the erroneous output.
- the version number of the program(s) involved (use --version).
- hardware, operating system, and compiler versions (uname -a).
checking the documentation against the implementation, translating the
program strings to other languages, etc.
-The basic algorithm is described in: "The C Programming Language", by
-B.W. Kernighan and D.M. Ritchie, Prentice-Hall, New Jersey, 1978;
-the program is an enhancement of the one published in that book.
-
-The GNU implementation of this classic program is brought to you by
-the efforts of several people. Please see the ./AUTHORS file.
+The basic Hello algorithm was described by B.W. Kernighan and
+D.M. Ritchie. The GNU implementation is an enhancement of the one
+published in that book, brought to you by the efforts of several people.
+Please see the ./AUTHORS file.
GNU Hello is free software. See the file COPYING for copying conditions.
This is the README-alpha file for GNU Hello prereleases.
- Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
+ Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
though, traffic is so low this is not necessary. Therefore, please
email bug reports, comments, etc. to bug-hello@gnu.org.
-You are welcome to join this list;
-to do so, visit http://lists.gnu.org/mailman/listinfo/bug-hello.
-It's archived at http://lists.gnu.org/pipermail/bug-hello.
+You are welcome to join this list; see the README for details.
If you see a problem in this release that you've already reported, feel
free to re-report it -- it's good to get a reminder. If you sent a
patch for a previous release, and you haven't received any feedback
about it, please do re-send it, it likely got lost.
-For development environment information, see README.dev.
+For information on the development environment, see README.dev.
This README.dev file describes the development environment.
- Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.
-The development sources for GNU Texinfo are available through anonymous
-CVS at Savannah:
- http://savannah.gnu.org/cvs/?group=texinfo
+The development sources are available through anonymous CVS at Savannah:
+ http://savannah.gnu.org/cvs/?group=hello
This distribution uses whatever versions of Automake, Autoconf, and
Gettext are listed in NEWS; usually the latest ones released. If you
echo "Bootstrapping CVS Hello with:"
-# This overwrites lots of files with older versions.
+# This overwrites lots of files with older versions, so don't use it.
# I keep the newest versions of files common between distributions up to
-# date in CVS (see util/srclist.txt), because it's not trivial for every
+# date in CVS, using gnulib-tool, because it's not trivial for every
# developer to do this.
-#cmd="autoreconf --verbose --force --install --include=m4"
+#cmd="autoreconf --verbose --force --install --include=gnulib/m4"
: ${ACLOCAL=aclocal}
: ${AUTOHEADER=autoheader}
% Load plain if necessary, i.e., if running under initex.
\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
%
-\def\texinfoversion{2006-01-27.14}
+\def\texinfoversion{2006-02-11.16}
%
% Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
% 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
\gdef\dodoignore#1{%
% #1 contains the command name as a string, e.g., `ifinfo'.
%
- % Define a command to find the next `@end #1', which must be on a line
- % by itself. Ignore anything after the `#1'; this matters in
- % verbatim environments, where otherwise the newline after an
- % ignored conditional would result in a blank line in the output.
- \long\def\doignoretext##1^^M@end #1##2^^M{%
+ % Define a command to find the next `@end #1'.
+ \long\def\doignoretext##1^^M@end #1{%
\doignoretextyyy##1^^M@#1\_STOP_}%
+ %
% And this command to find another #1 command, at the beginning of a
% line. (Otherwise, we would consider a line `@c @ifset', for
% example, to count as an @ifset for nesting.)
\next
}
-% Finish off ignored text.
-\def\enddoignore{\endgroup\ignorespaces}
-
+% Finish off ignored text by looking for a following \lisppar and
+% ignoring it, if present. This happens in
+% verbatim environments, where otherwise the newline after an
+% ignored conditional would result in a blank line in the output.
+% It would be better to ignore everything to the end of the line, but
+% I'm not sure how to do that if we are *not* in a verbatim env.
+\def\enddoignore{\futurelet\next\finishignore}%
+\def\finishignore{\ifx\next\lisppar\aftergroup\gobble\fi\endgroup}
% @set VAR sets the variable VAR to an empty value.
% @set VAR REST-OF-LINE sets VAR to the value REST-OF-LINE.
This website is licensed under AGPL-3.0. Feel free to copy!