texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo ChangeLog lib/Makefile.am lib/README li...


From: Karl Berry
Subject: texinfo ChangeLog lib/Makefile.am lib/README li...
Date: Fri, 14 Oct 2011 16:02:07 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Karl Berry <karl>       11/10/14 16:02:07

Modified files:
        .              : ChangeLog 
        lib            : Makefile.am README 
Removed files:
        lib            : substring.c 

Log message:
        rm lib/substring.c, only needed in C makeinfo

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1262&r2=1.1263
http://cvs.savannah.gnu.org/viewcvs/texinfo/lib/Makefile.am?cvsroot=texinfo&r1=1.12&r2=1.13
http://cvs.savannah.gnu.org/viewcvs/texinfo/lib/README?cvsroot=texinfo&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/texinfo/lib/substring.c?cvsroot=texinfo&r1=1.5&r2=0

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1262
retrieving revision 1.1263
diff -u -b -r1.1262 -r1.1263
--- ChangeLog   13 Oct 2011 23:27:04 -0000      1.1262
+++ ChangeLog   14 Oct 2011 16:02:05 -0000      1.1263
@@ -1,3 +1,8 @@
+2011-10-14  Karl Berry  <address@hidden>
+
+       * lib/substring.c: remove, only used in C makeinfo, no longer built.
+       Leaving us with just xexit in lib, but that still seems useful.
+
 2011-10-13  Karl Berry  <address@hidden>
 
        * doc/texinfo.txi (Three Arguments): same requirements as node names.

Index: lib/Makefile.am
===================================================================
RCS file: /sources/texinfo/texinfo/lib/Makefile.am,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- lib/Makefile.am     24 Jun 2010 00:17:01 -0000      1.12
+++ lib/Makefile.am     14 Oct 2011 16:02:06 -0000      1.13
@@ -1,7 +1,7 @@
-# $Id: Makefile.am,v 1.12 2010/06/24 00:17:01 karl Exp $
+# $Id: Makefile.am,v 1.13 2011/10/14 16:02:06 karl Exp $
 # Makefile.am for texinfo/lib.
 #
-# Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+# Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
 # Free Software Foundation, Inc.
 #
 # This file is free software; as a special exception the author gives
@@ -19,6 +19,6 @@
   -I$(top_builddir)/gnulib/lib                 \
   -DLOCALEDIR=\"$(localedir)\"
 
-libtxi_a_SOURCES = substring.c xexit.c
+libtxi_a_SOURCES = xexit.c
 
 EXTRA_DIST = README

Index: lib/README
===================================================================
RCS file: /sources/texinfo/texinfo/lib/README,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- lib/README  11 Apr 2004 17:56:46 -0000      1.3
+++ lib/README  14 Oct 2011 16:02:06 -0000      1.4
@@ -1,13 +1,13 @@
-$Id: README,v 1.3 2004/04/11 17:56:46 karl Exp $
+$Id: README,v 1.4 2011/10/14 16:02:06 karl Exp $
 texinfo/lib/README
 
-  Copyright (C) 2002 Free Software Foundation, Inc.
+  Copyright (C) 2002, 2011 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.
 
-Common routines for the Texinfo programs.
+Common routines for the Texinfo programs -- down to one.
 
-Many are common to other GNU packages as well.
-See the gnulib project at savannah: http://savannah.gnu.org/projects/gnulib
+The bulk of the common sources come from Gnulib:
+http://savannah.gnu.org/projects/gnulib

Index: lib/substring.c
===================================================================
RCS file: lib/substring.c
diff -N lib/substring.c
--- lib/substring.c     1 Jul 2007 21:20:31 -0000       1.5
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,34 +0,0 @@
-/* substring.c -- extract substring.
-   $Id: substring.c,v 1.5 2007/07/01 21:20:31 karl Exp $
-
-   Copyright (C) 1999, 2004, 2007 Free Software Foundation, Inc.
-
-   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 3 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, see <http://www.gnu.org/licenses/>.  */
-
-#include "system.h"
-
-char *
-substring (const char *start, const char *end)
-{
-  char *result = xmalloc (end - start + 1);
-  char *scan_result = result;
-  const char *scan = start;
-
-  while (scan < end)
-    *scan_result++ = *scan++;
-
-  *scan_result = 0;
-  return result;
-}
-



reply via email to

[Prev in Thread] Current Thread [Next in Thread]