]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Comment out unused function.
authorBruno Haible <bruno@clisp.org>
Tue, 18 Mar 2003 10:46:38 +0000 (10:46 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:10:17 +0000 (12:10 +0200)
gettext-tools/src/ChangeLog
gettext-tools/src/str-list.c
gettext-tools/src/str-list.h

index bb2cdd45f9de17d98af6676ec8a84d2de3c7ccd3..35ee8759d1a0ec3744a335b884aab234e703988f 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-16  Bruno Haible  <bruno@clisp.org>
+
+       * str-list.h (string_list_join): Comment out.
+       * str-list.c (string_list_join): Comment out.
+
 2003-03-10  Bruno Haible  <bruno@clisp.org>
 
        * msggrep.c (no_pass): Mention option -C.
index 71c2211658565d6096fdbcd410d215ba9297ff47..094329c55e11a33885e6b3e3f8de8401d1b6abc0 100644 (file)
@@ -1,5 +1,5 @@
 /* GNU gettext - internationalization aids
-   Copyright (C) 1995, 1998, 2000-2002 Free Software Foundation, Inc.
+   Copyright (C) 1995, 1998, 2000-2003 Free Software Foundation, Inc.
 
    This file was written by Peter Miller <millerp@canb.auug.org.au>
 
@@ -176,6 +176,7 @@ string_list_concat_destroy (string_list_ty *slp)
 }
 
 
+#if 0 /* unused */
 /* Return a freshly allocated string obtained by concatenating all the
    strings in the list, separated by spaces.  */
 char *
@@ -206,6 +207,7 @@ string_list_join (const string_list_ty *slp)
   result[pos] = '\0';
   return result;
 }
+#endif
 
 
 /* Return 1 if s is contained in the list of strings, 0 otherwise.  */
index 4414d510cf49dbf94b1933c11ba3ac8055534311..086b931a392f6db0864a8ed39d1bf08da37c22b8 100644 (file)
@@ -1,5 +1,5 @@
 /* GNU gettext - internationalization aids
-   Copyright (C) 1995-1996, 1998, 2000-2002 Free Software Foundation, Inc.
+   Copyright (C) 1995-1996, 1998, 2000-2003 Free Software Foundation, Inc.
 
    This file was written by Peter Miller <millerp@canb.auug.org.au>
 
@@ -63,9 +63,11 @@ extern char *string_list_concat (const string_list_ty *slp);
    strings in the list, and destroy the list.  */
 extern char *string_list_concat_destroy (string_list_ty *slp);
 
+#if 0 /* unused */
 /* Return a freshly allocated string obtained by concatenating all the
    strings in the list, separated by spaces.  */
 extern char *string_list_join (const string_list_ty *slp);
+#endif
 
 /* Return 1 if s is contained in the list of strings, 0 otherwise.  */
 extern bool string_list_member (const string_list_ty *slp, const char *s);