Index: ChangeLog =================================================================== RCS file: /cvsroot/gnugo/gnugo/ChangeLog,v retrieving revision 1.208 diff -u -r1.208 ChangeLog --- ChangeLog 21 Feb 2002 01:25:26 -0000 1.208 +++ ChangeLog 21 Feb 2002 16:49:23 -0000 @@ -2,6 +2,7 @@ -- ChangeLog ------------------------------------------------------------------------- +- spelling fixes - verbosity revisions with alternate connections in readconnect.c - bugfix in close_bubbles() - revised "stepped on a bug" message Index: doc/api.texi =================================================================== RCS file: /cvsroot/gnugo/gnugo/doc/api.texi,v retrieving revision 1.4 diff -u -r1.4 api.texi --- doc/api.texi 23 Nov 2001 17:47:39 -0000 1.4 +++ doc/api.texi 21 Feb 2002 16:49:24 -0000 @@ -77,7 +77,7 @@ SGF files and then later be read back again. These are also within @code{libengine.a}. -The resposibility of the application is to provide the user with a +The responsibility of the application is to provide the user with a user interface, graphical or not, and let the user interact with the engine. Index: engine/clock.c =================================================================== RCS file: /cvsroot/gnugo/gnugo/engine/clock.c,v retrieving revision 1.9 diff -u -r1.9 clock.c --- engine/clock.c 19 Feb 2002 18:39:02 -0000 1.9 +++ engine/clock.c 21 Feb 2002 16:49:24 -0000 @@ -584,7 +584,7 @@ /* - * Modify the level during a game to avoid loosing by time. + * Modify the level during a game to avoid losing by time. */ void clock_adapt_level(int *p_level, int color) Index: engine/influence.c =================================================================== RCS file: /cvsroot/gnugo/gnugo/engine/influence.c,v retrieving revision 1.37 diff -u -r1.37 influence.c --- engine/influence.c 19 Feb 2002 18:04:23 -0000 1.37 +++ engine/influence.c 21 Feb 2002 16:49:29 -0000 @@ -503,7 +503,7 @@ q->intrusion_counter++; } -/* Experimental influence: Comparision of intrusions datas, to sort them. */ +/* Experimental influence: Comparison of intrusions datas, to sort them. */ static int compare_intrusions(const void *p1, const void *p2) { Index: patterns/dfa.c =================================================================== RCS file: /cvsroot/gnugo/gnugo/patterns/dfa.c,v retrieving revision 1.13 diff -u -r1.13 dfa.c --- patterns/dfa.c 3 Feb 2002 04:20:21 -0000 1.13 +++ patterns/dfa.c 21 Feb 2002 16:49:35 -0000 @@ -282,7 +282,7 @@ /* - * return the effective size of a dfa in Kb. + * return the effective size of a dfa in kB. */ int @@ -816,7 +816,7 @@ /* * Add a new string with attribute att_val into the dfa. * if the new size of the dfa respect some size conditions - * return increase in Kb or -1 if the pattern was rejected. + * return increase in kB or -1 if the pattern was rejected. * This function never rejects string of length <= 1. */ Index: patterns/dfa.h =================================================================== RCS file: /cvsroot/gnugo/gnugo/patterns/dfa.h,v retrieving revision 1.11 diff -u -r1.11 dfa.h --- patterns/dfa.h 3 Feb 2002 04:20:21 -0000 1.11 +++ patterns/dfa.h 21 Feb 2002 16:49:35 -0000 @@ -121,7 +121,7 @@ void new_dfa(dfa_t *pdfa, const char *name); void copy_dfa(dfa_t *p_to, dfa_t *p_from); void kill_dfa(dfa_t *pdfa); -int dfa_size(dfa_t *pdfa); /* in Kb */ +int dfa_size(dfa_t *pdfa); /* in kB */ void save_dfa(const char *f_name, dfa_t *pdfa); dfa_t *load_dfa(const char *f_path, const char *f_name, dfa_t **ppdfa); void dump_dfa(FILE *f, dfa_t *pdfa); @@ -161,3 +161,9 @@ #endif /* _DFA_H_ */ +/* + * Local Variables: + * tab-width: 8 + * c-basic-offset: 2 + * End: + */ Index: patterns/mkpat.c =================================================================== RCS file: /cvsroot/gnugo/gnugo/patterns/mkpat.c,v retrieving revision 1.53 diff -u -r1.53 mkpat.c --- patterns/mkpat.c 9 Feb 2002 16:11:29 -0000 1.53 +++ patterns/mkpat.c 21 Feb 2002 16:49:36 -0000 @@ -1870,7 +1870,7 @@ if (dfa_generate) { fprintf(stderr, "---------------------------\n"); fprintf(stderr, "dfa for %s\n", argv[gg_optind]); - fprintf(stderr, "size: %dKb for ", dfa_size(&dfa)); + fprintf(stderr, "size: %d kB for ", dfa_size(&dfa)); fprintf(stderr, "%d patterns\n", patno); strcpy(dfa.name, argv[gg_optind]);