summaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2003-07-04 08:36:53 +0000
committerAkim Demaille <akim@epita.fr>2003-07-04 08:36:53 +0000
commitae954adccefe42db555945571c2dabe6a06b8e15 (patch)
treea28800c60c437f8da2814bd0aa7ef69799fe41a9 /HACKING
parent9b037ba076a26b370da4a9f0830789ee34190730 (diff)
downloadautomake-ae954adccefe42db555945571c2dabe6a06b8e15.tar.gz
* automake.in (&scan_texinfo_file, &output_texinfo_build_rules,
(&handle_texinfo_helper, &handle_texinfo): Formatting changes. Prototype properly. Don't use & when calling functions.
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING31
1 files changed, 31 insertions, 0 deletions
diff --git a/HACKING b/HACKING
index dd4f5d006..587e2cdcb 100644
--- a/HACKING
+++ b/HACKING
@@ -76,6 +76,12 @@
default), and other portions using the GNU style (cperl-mode's
default). Write new code using GNU style.
+* Don't use & for function calls, unless required.
+ The use of & prevents prototypes from being checked.
+ Just as above, don't change massively all the code to strip the
+ &, just convert the old code as you work on it, and write new
+ code without.
+
* Perl 5 is now OK.
@@ -131,3 +137,28 @@
* Update version number in configure.in to next alpha number.
Re-run autoconf and commit.
+
+-----
+
+Copyright (C) 2003 Free Software Foundation, Inc.
+
+This file is part of GNU Automake.
+
+GNU Automake is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU Automake is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with autoconf; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+
+Local Variables:
+mode: text
+End: