* srfi-modules.texi (SRFI-4): Added documentation for the new
[bpt/guile.git] / HACKING
CommitLineData
afdd97ae 1Guile Hacking Guide
3db4f31b 2Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001 Free software Foundation, Inc.
afdd97ae
MV
3
4 Permission is granted to anyone to make or distribute verbatim copies
5 of this document as received, in any medium, provided that the
6 copyright notice and permission notice are preserved,
7 and that the distributor grants the recipient permission
8 for further redistribution as permitted by this notice.
9
10 Permission is granted to distribute modified versions
11 of this document, or of portions of it,
12 under the above conditions, provided also that they
13 carry prominent notices stating who last changed them,
14 and that any new or changed statements about the activities
15 of the Free Software Foundation are approved by the Foundation.
16
17
3db4f31b
TTN
18What to Hack =========================================================
19
20You can hack whatever you want, thank GNU.
21
22However, to see what others have indicated as their interest (and avoid
e59f9c99
TTN
23potential wasteful duplication of effort), see file TODO. Note that
24the version you find may be out of date; a CVS checkout is recommended
25(see also file SNAPSHOTS).
3db4f31b
TTN
26
27It's also a good idea to join the guile-devel@gnu.org mailing list.
28See http://www.gnu.org/software/guile/mail/mail.html for more info.
29
30
b0749d03
MV
31Hacking It Yourself ==================================================
32
33As distributed, Guile needs only an ANSI C compiler and a Unix system
34to compile. However, Guile's makefiles, configuration scripts, and a
35few other files are automatically generated, not written by hand. If
36you want to make changes to the system (which we encourage!) you will
37find it helpful to have the tools we use to develop Guile. They
38are the following:
39
c794483c 40Autoconf 2.50 --- a system for automatically generating `configure'
b0749d03
MV
41 scripts from templates which list the non-portable features a
42 program would like to use. Available in
43 "ftp://ftp.gnu.org/pub/gnu/autoconf"
44
c794483c 45Automake 1.4-p2 --- a system for automatically generating Makefiles that
b0749d03
MV
46 conform to the (rather Byzantine) GNU coding standards. The
47 nice thing is that it takes care of hairy targets like 'make
48 dist' and 'make distclean', and automatically generates
49 Makefile dependencies. Automake is available in
50 "ftp://ftp.gnu.org/pub/gnu/automake"
51
52 Before using automake, you may need to copy `threads.m4' and
53 `guile.m4' from the top directory of the Guile core disty to
54 `/usr/local/share/aclocal.
55
c794483c 56libtool 1.4 --- a system for managing the zillion hairy options needed
b0749d03
MV
57 on various systems to produce shared libraries. Available in
58 "ftp://ftp.gnu.org/pub/gnu/libtool"
59
17383b7c
ML
60flex 2.5.4 (or newer) --- a scanner generator. earlier versions will
61 most probably work too.
093e7da4 62
b0749d03
MV
63You are lost in a little maze of automatically generated files, all
64different.
b0749d03 65
795b4217 66
0822a9c1
JB
67Contributing Your Changes ============================================
68
69- If you have put together a change that meets the coding standards
70described below, we encourage you to submit it to Guile. The best
ee2bf8b8 71place to post it is guile-devel@gnu.org. Please don't send it
c5ee0952
JB
72directly to me; I often don't have time to look things over. If you
73have tested your change, then you don't need to be shy.
0822a9c1
JB
74
75- Please submit patches using either context or unified diffs (diff -c
76or diff -u). Don't include a patch for ChangeLog; such patches don't
77apply cleanly, since we've probably changed the top of ChangeLog too.
78Instead, provide the unaltered text at the top of your patch.
79
80Please don't include patches for generated files like configure,
81aclocal.m4, or any Makefile.in. Such patches are often large, and
82we're just going to regenerate those files anyway.
83
84
d2bd3d8d
JB
85CVS conventions ======================================================
86
eb4194d6 87- We use CVS to manage the Guile sources. The repository lives on
ee2bf8b8 88subversions.gnu.org, in /cvs; you will need an
aa31443a 89account on that machine to access the repository. Also, for security
ee2bf8b8 90reasons, subversions presently only supports CVS connections via the SSH
aa31443a
JB
91protocol, so you must first install the SSH client. Then, you should
92set your CVS_RSH environment variable to ssh, and use the following as
93your CVS root:
eb4194d6 94
ee2bf8b8 95 :ext:USER@subversions.gnu.org:/cvs
eb4194d6
JB
96
97Either set your CVSROOT environment variable to that, or give it as
98the value of the global -d option to CVS when you check out a working
99directory.
100
848f2a01 101For more information on SSH, see http://www.cs.hut.fi/ssh.
eb4194d6
JB
102
103The Guile sources live in several modules:
104
105 - guile-core --- the interpreter, QuickThreads, and ice-9
106 - guile-tcltk --- the Guile/Tk interface
b1f4ddc1 107 - guile-tk --- the new Guile/Tk interface, based on STk's modified Tk
eb4194d6
JB
108 - guile-rgx-ctax --- the Guile/Rx interface, and the ctax implementation
109 - guile-scsh --- the port of SCSH to guile, talk to Gary Houston
b1f4ddc1 110 - guile-www --- A Guile module for making HTTP requests.
eb4194d6 111
afdfe3f4
JB
112There is a mailing list for CVS commit messages; see README for details.
113
b5f69988
GB
114- We check Makefile.am and configure.in files into CVS, but the
115"autogen.sh" script must be run from the top-level to generate the
116actual "configure" script that then must be run to create the various
117Makefile-s to build guile. The general rule is that you should be able
118to check out a working directory of Guile from CVS, and then type
294a61d3
MV
119"./autogen.sh", then "configure", and finally "make". No
120automatically generated files should be checked into the CVS
121repository.
122
123- The .cvsignore file is contained in the repository, to provide a
124reasonable list of auto-generated files that should not be checked in.
125This, however, prohibits one from having local additions to the
126.cvsignore file (yes, you can modify it and never check it in, but
127that doesn't seem to be a good solution to me). To get around this
128problem, you might want to patch your cvs program so that it uses a
129.cvsignore-local file (say) instead of the one from the repository. A
130patch for this can be found at the very end of this file.
350294b1 131
d4c83f63
JB
132- (Automake 1.4 only) Be sure to run automake at the top of the tree
133with no arguments. Do not use `automake Makefile' to regenerate
134specific Makefile.in files, and do not trust the Makefile rules to
135rebuild them when they are out of date. Automake 1.4 will add
136extraneous rules to the top-level Makefile if you specify specific
137Makefiles to rebuild on the command line. Running the command
138`autoreconf --force' should take care of everything correctly.
139
795b4217
JB
140- Make sure your changes compile and work, at least on your own
141machine, before checking them into the main branch of the Guile
142repository. If you really need to check in untested changes, make a
143branch.
144
d2bd3d8d
JB
145- Include each log entry in both the ChangeLog and in the CVS logs.
146If you're using Emacs, the pcl-cvs interface to CVS has features to
147make this easier; it checks the ChangeLog, and generates good default
148CVS log entries from that.
149
150
151Coding standards =====================================================
152
b80e8a60
MD
153- Before contributing larger amounts of code to Guile, please read the
154documents in `guile-core/devel/policy' in the CVS source tree.
155
d2bd3d8d
JB
156- As for any part of Project GNU, changes to Guile should follow the
157GNU coding standards. The standards are available via anonymous FTP
158from prep.ai.mit.edu, as /pub/gnu/standards/standards.texi and
159make-stds.texi.
160
99be3450
JB
161- The Guile tree should compile without warnings under the following
162GCC switches, which are the default in the current configure script:
fcba9b58
DH
163
164 -O2 -Wall -Wpointer-arith -Wmissing-prototypes
99be3450 165
d043e0bb
JB
166Note that the warnings generated vary from one version of GCC to the
167next, and from one architecture to the next (apparently). To provide
168a concrete common standard, Guile should compile without warnings from
18fa97f8 169GCC 2.7.2.3 in a Red Hat 5.2 i386 Linux machine. Furthermore, each
d043e0bb
JB
170developer should pursue any additional warnings noted by on their
171compiler. This means that people using more stringent compilers will
172have more work to do, and assures that everyone won't switch to the
41d368d9 173most lenient compiler they can find. :)
d043e0bb 174
afdfe3f4
JB
175Note also that EGCS (as of November 3 1998) doesn't handle the
176`noreturn' attribute properly, so it doesn't understand that functions
177like scm_error won't return. This may lead to some silly warnings
178about uninitialized variables. You should look into these warnings to
179make sure they are indeed spurious, but you needn't correct warnings
180caused by this EGCS bug.
181
0822a9c1
JB
182- If you add code which uses functions or other features that are not
183entirely portable, please make sure the rest of Guile will still
184function properly on systems where they are missing. This usually
185entails adding a test to configure.in, and then adding #ifdefs to your
186code to disable it if the system's features are missing.
afdfe3f4 187
f2f551af
MD
188- The normal way of removing a function, macro or variable is to mark
189it as "deprecated", keep it for a while, and remove it in a later
190release. If a function or macro is marked as "deprecated" it
191indicates that people shouldn't use it in new programs, and should try
192to remove it in old. Make sure that an alternative exists unless it
193is our purpose to remove functionality. Don't deprecate definitions
194if it is unclear when they will be removed. (This is to ensure that a
195valid way of implementing some functionality always exists.)
196
ee2bf8b8 197When deprecating a definition, always follow this procedure:
f2f551af
MD
198
1991. Mark the definition using
200
21d12a62
MV
201 #if (SCM_DEBUG_DEPRECATED == 0)
202 ...
203 #endif
f2f551af 204
21d12a62 205 or, for Scheme code, wrap it using
f2f551af 206
21d12a62
MV
207 (begin-deprecated
208 ...)
f2f551af 209
21d12a62
MV
2102. Make the deprecated code issue a warning when it is used, by using
211 scm_c_issue_deprecation_warning (in C) or issue-deprecation-warning
212 (in Scheme).
213
2143. Write a comment at the definition explaining how a programmer can
215 manage without the deprecated definition.
216
2174. Add an entry that the definition has been deprecated in NEWS and
218 explain what do do instead.
219
2205. At the top of RELEASE, there is a list of releases with reminders
221 about what to do at each release. Add a reminder about the removal
222 of the deprecated defintion at the appropriate release.
f2f551af 223
795b4217
JB
224- When you make a user-visible change (i.e. one that should be
225documented, and appear in NEWS, put an asterisk in column zero of the
226start of the ChangeLog entry, like so:
227
228Sat Aug 3 01:27:14 1996 Gary Houston <ghouston@actrix.gen.nz>
229
230* * fports.c (scm_open_file): don't return #f, throw error.
231
fa3f45cc
JB
232When you've written a NEWS entry and updated the documentation, go
233ahead and remove the asterisk. I will use the asterisks to find and
234document changes that haven't been dealt with before a release.
235
d49a7907
JB
236- Please write log entries for functions written in C under the
237functions' C names, and write log entries for functions written in
238Scheme under the functions' Scheme names. Please don't do this:
239
240 * procs.c, procs.h (procedure-documentation): Moved from eval.c.
241
242Entries like this make it harder to search the ChangeLogs, because you
afdfe3f4
JB
243can never tell which name the entry will refer to. Instead, write this:
244
245 * procs.c, procs.h (scm_procedure_documentation): Moved from eval.c.
d49a7907 246
4085a3da
JB
247Changes like adding this line are special:
248
3243bcc0 249 SCM_PROC (s_map_in_order, "map-in-order", 2, 0, 1, scm_map);
4085a3da
JB
250
251Since the change here is about the name itself --- we're adding a new
252alias for scm_map that guarantees the order in which we process list
253elements, but we're not changing scm_map at all --- it's appropriate
254to use the Scheme name in the log entry.
255
30d14d55
JB
256- There's no need to keep a change log for documentation files. This
257is because documentation is not susceptible to bugs that are hard to
258fix. Documentation does not consist of parts that must interact in a
259precisely engineered fashion; to correct an error, you need not know
260the history of the erroneous passage. (This is copied from the GNU
261coding standards.)
262
795b4217
JB
263- Make sure you have papers from people before integrating their
264changes or contributions. This is very frustrating, but very
265important to do right. From maintain.texi, "Information for
266Maintainers of GNU Software":
267
268 When incorporating changes from other people, make sure to follow the
269 correct procedures. Doing this ensures that the FSF has the legal
270 right to distribute and defend GNU software.
271
272 For the sake of registering the copyright on later versions ofthe
273 software you need to keep track of each person who makes significant
274 changes. A change of ten lines or so, or a few such changes, in a
275 large program is not significant.
276
277 *Before* incorporating significant changes, make sure that the person
278 has signed copyright papers, and that the Free Software Foundation has
279 received them.
280
281If you receive contributions you want to use from someone, let me know
282and I'll take care of the administrivia. Put the contributions aside
283until we have the necessary papers.
284
26446f99
MV
285Once you accept a contribution, be sure to keep the files AUTHORS and
286THANKS uptodate.
287
fa3f45cc
JB
288- When you make substantial changes to a file, add the current year to
289the list of years in the copyright notice at the top of the file.
795b4217 290
26446f99
MV
291- When you get bug reports or patches from people, be sure to list
292them in THANKS.
293
d2bd3d8d 294
2aebf10d
MV
295- Naming conventions. We use certain naming conventions to structure
296 the considerable number of global identifiers. All identifiers
297 should be either all lower case or all upper case. Syllables are
298 separated by underscaores `_'. All non-static identifiers should
299 start with scm_ or SCM_. Then might follow zero or more one letter
300 syllables giving the category of the identifier. The currently used
301 category identifiers are
302
303 t - type name
304
305 c,C - something with a interface suited for C use. This is used
306 to name functions that behave like Scheme primitives but
307 have a more C friendly calling convention.
308
309 i,I - internal to libguile. It is global, but not considered part
310 of the libguile API.
311
312 f - a SCM variable pointing to a Scheme function object.
313
314 F - a bit mask for a flag.
315
316 m - a macro transformer procedure
317
318 n,N - a count of something
319
320 s - a constant C string
321
e59f9c99 322
2aebf10d 323
d2bd3d8d
JB
324Helpful hints ========================================================
325
f84f77f5
JB
326- [From Mikael Djurfeldt] When working on the Guile internals, it is
327quite often practical to implement a scheme-level procedure which
328helps you examine the feature you're working on.
329
330Examples of such procedures are: pt-size, debug-hand and
331current-pstate.
332
333I've now put #ifdef GUILE_DEBUG around all such procedures, so that
334they are not compiled into the "normal" Guile library. Please do the
335same when you add new procedures/C functions for debugging purpose.
336
337You can define the GUILE_DEBUG flag by passing --enable-guile-debug to
338the configure script.
339
52591c80
JB
340- You'll see uses of the macro SCM_P scattered throughout the code;
341those are vestiges of a time when Guile was meant to compile on
342pre-ANSI compilers. Guile now requires ANSI C, so when you write new
343functions, feel free to use ANSI declarations, and please provide
1cf84ea5 344prototypes for everything. You don't need to use SCM_P in new code.
52591c80 345
795b4217 346
7e2cb69c 347Jim Blandy, and others
294a61d3
MV
348
349
350Patches ===========================================================
351
352This one makes cvs-1.10 consider the file $CVSDOTIGNORE instead of
353.cvsignore when that environment variable is set.
354
355=== patch start ===
356diff -r -u cvs-1.10/src/cvs.h cvs-1.10.ignore-hack/src/cvs.h
357--- cvs-1.10/src/cvs.h Mon Jul 27 04:54:11 1998
358+++ cvs-1.10.ignore-hack/src/cvs.h Sun Jan 23 12:58:09 2000
359@@ -516,7 +516,7 @@
3db4f31b 360
294a61d3
MV
361 extern int ign_name PROTO ((char *name));
362 void ign_add PROTO((char *ign, int hold));
363-void ign_add_file PROTO((char *file, int hold));
364+int ign_add_file PROTO((char *file, int hold));
365 void ign_setup PROTO((void));
366 void ign_dir_add PROTO((char *name));
367 int ignore_directory PROTO((char *name));
368diff -r -u cvs-1.10/src/ignore.c cvs-1.10.ignore-hack/src/ignore.c
369--- cvs-1.10/src/ignore.c Mon Sep 8 01:04:15 1997
370+++ cvs-1.10.ignore-hack/src/ignore.c Sun Jan 23 12:57:50 2000
371@@ -99,9 +99,9 @@
372 /*
373 * Open a file and read lines, feeding each line to a line parser. Arrange
374 * for keeping a temporary list of wildcards at the end, if the "hold"
375- * argument is set.
376+ * argument is set. Return true when the file exists and has been handled.
377 */
378-void
379+int
380 ign_add_file (file, hold)
381 char *file;
382 int hold;
383@@ -149,8 +149,8 @@
384 if (fp == NULL)
385 {
386 if (! existence_error (errno))
387- error (0, errno, "cannot open %s", file);
388- return;
389+ error (0, errno, "cannot open %s", file);
390+ return 0;
391 }
392 while (getline (&line, &line_allocated, fp) >= 0)
393 ign_add (line, hold);
394@@ -159,6 +159,7 @@
395 if (fclose (fp) < 0)
396 error (0, errno, "cannot close %s", file);
397 free (line);
398+ return 1;
399 }
3db4f31b 400
294a61d3
MV
401 /* Parse a line of space-separated wildcards and add them to the list. */
402@@ -375,6 +376,7 @@
403 struct stat sb;
404 char *file;
405 char *xdir;
406+ char *cvsdotignore;
3db4f31b 407
294a61d3
MV
408 /* Set SUBDIRS if we have subdirectory information in ENTRIES. */
409 if (entries == NULL)
410@@ -397,7 +399,10 @@
411 if (dirp == NULL)
412 return;
3db4f31b 413
294a61d3
MV
414- ign_add_file (CVSDOTIGNORE, 1);
415+ cvsdotignore = getenv("CVSDOTIGNORE");
416+ if (cvsdotignore == NULL || !ign_add_file (cvsdotignore, 1))
417+ ign_add_file (CVSDOTIGNORE, 1);
418+
419 wrap_add_file (CVSDOTWRAPPER, 1);
3db4f31b 420
294a61d3
MV
421 while ((dp = readdir (dirp)) != NULL)
422=== patch end ===
423
424This one is for pcl-cvs-2.9.2, so that `i' adds to the local
425.cvsignore file.
426
427=== patch start ===
428--- pcl-cvs.el~ Mon Nov 1 12:33:46 1999
429+++ pcl-cvs.el Tue Jan 25 21:46:27 2000
430@@ -1177,7 +1177,10 @@
431 "Append the file in FILEINFO to the .cvsignore file.
432 Can only be used in the *cvs* buffer."
433 (save-window-excursion
434- (set-buffer (find-file-noselect (expand-file-name ".cvsignore" dir)))
3db4f31b 435+ (set-buffer (find-file-noselect
294a61d3
MV
436+ (expand-file-name (or (getenv "CVSDOTIGNORE")
437+ ".cvsignore")
438+ dir)))
439 (goto-char (point-max))
440 (unless (zerop (current-column)) (insert "\n"))
441 (insert str "\n")
442=== patch end ===