aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-05-18 11:36:44 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-05-18 11:36:44 +0000
commitdf32bb611d3d7ed4c8c408d06cdcab3c7a966a5a (patch)
tree6207c6b7cf9cfd290c5b1d8323ff8c637701b3fc /src
parent2763b8b2cf70ab07405543606bfe0d2197dbab01 (diff)
downloadcflow-df32bb611d3d7ed4c8c408d06cdcab3c7a966a5a.tar.gz
cflow-df32bb611d3d7ed4c8c408d06cdcab3c7a966a5a.tar.bz2
Changed FSF postal address
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am7
-rw-r--r--src/c.l7
-rw-r--r--src/cflow.h7
-rw-r--r--src/gnu.c7
-rw-r--r--src/main.c16
-rw-r--r--src/output.c7
-rw-r--r--src/parser.c7
-rw-r--r--src/parser.h6
-rw-r--r--src/posix.c7
-rw-r--r--src/rc.c7
-rw-r--r--src/symbol.c11
11 files changed, 51 insertions, 38 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 851b9dc..be9808e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -14,8 +14,9 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301 USA.
INCLUDES = -I$(top_srcdir)/lib -I../ -I../lib
@@ -52,4 +53,4 @@ FLOWCHART_FILES=\
chart.cflow: cflow $(FLOWCHART_FILES) cflow.rc Makefile
CFLOWRC=$(top_srcdir)/src/cflow.rc \
cflow -o$@ -i^s $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- $(CPPFLAGS) $(FLOWCHART_FILES) \ No newline at end of file
+ $(CPPFLAGS) $(FLOWCHART_FILES)
diff --git a/src/c.l b/src/c.l
index b897c1c..af64809 100644
--- a/src/c.l
+++ b/src/c.l
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
%x comment
%x string
diff --git a/src/cflow.h b/src/cflow.h
index 1e05849..538de5e 100644
--- a/src/cflow.h
+++ b/src/cflow.h
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/src/gnu.c b/src/gnu.c
index 8d4c504..07f843e 100644
--- a/src/gnu.c
+++ b/src/gnu.c
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
#include <cflow.h>
diff --git a/src/main.c b/src/main.c
index be34831..c2d96b7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
#include <cflow.h>
#include <argp.h>
@@ -117,8 +118,11 @@ char *cflow_license_text = N_(
" GNU General Public License for more details.\n"
"\n"
" You should have received a copy of the GNU General Public License\n"
-" along with GNU cflow; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\n");
+" along with GNU cflow; if not, write to the Free Software Foundation,\n"
+" Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n"
+"\n"
+"\n"
+);
/* Structure representing various arguments of command line options */
struct option_type {
@@ -282,7 +286,7 @@ number(const char **str_ptr, int base, int count)
* KEYWORD is one of "begin", "0", ", "1", "end0", "end1",
* or an abbreviation thereof,
* STR is the value to be assigned to the parameter.
- *
+ *
* STR can contain usual C escape sequences plus \e meaning '\033'.
* Apart from this any character followed by xN suffix (where N is
* a decimal number) is expanded to the sequence of N such characters.
diff --git a/src/output.c b/src/output.c
index d7dea98..1e54e23 100644
--- a/src/output.c
+++ b/src/output.c
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
#include <cflow.h>
#include <parser.h>
diff --git a/src/parser.c b/src/parser.c
index 168d7ba..efd0e94 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
#include <cflow.h>
#include <parser.h>
diff --git a/src/parser.h b/src/parser.h
index bb55ecf..b8681f3 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -1,17 +1,17 @@
/* $Id$
* cflow
* Copyright (C) 1997 Gray
- *
+ *
* This program 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 of the License, or
* (at your option) any later version.
- *
+ *
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
diff --git a/src/posix.c b/src/posix.c
index 00398cb..d4efd48 100644
--- a/src/posix.c
+++ b/src/posix.c
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
#include <cflow.h>
#include <ctype.h>
diff --git a/src/rc.c b/src/rc.c
index 8241920..99a0a0c 100644
--- a/src/rc.c
+++ b/src/rc.c
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
#include <cflow.h>
#include <parser.h>
diff --git a/src/symbol.c b/src/symbol.c
index dd46477..7da473d 100644
--- a/src/symbol.c
+++ b/src/symbol.c
@@ -11,9 +11,10 @@
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 GNU cflow; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU General Public
+ License along with GNU cflow; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301 USA */
#include <cflow.h>
#include <parser.h>
@@ -149,7 +150,7 @@ delete_autos(int level)
* This means for each list replace its entry point with its CAR
* and throw away the first cons. The first cons holds pointers
* to the head and tail of the list and is used to speed up appends.
- *
+ *
* TODO: The memory is not reclaimed
*/
static bool
@@ -275,7 +276,7 @@ alloc_cons()
/* Append a new cons to the tail of the list
* ROOT_PTR points to a `root cons'.
* CAR is the car value of the cons to be created.
- *
+ *
* Note: Car of the root cons points to the head of the list,
* cdr of root cons points to the tail of the list.
*/

Return to:

Send suggestions and report system problems to the System administrator.