m4-patches
[Top][All Lists]
Advanced

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

FYI: 37-gary-move-m4_string-decl.patch


From: Gary V. Vaughan
Subject: FYI: 37-gary-move-m4_string-decl.patch
Date: Mon, 11 Aug 2003 14:10:52 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5b) Gecko/20030804

Applied to HEAD.
--
  ())_.  Gary V. Vaughan    gary@(oranda.demon.co.uk|gnu.org)
  ( '/   Research Scientist http://www.oranda.demon.co.uk       ,_())____
  / )=   GNU Hacker         http://www.gnu.org/software/libtool  \'      `&
`(_~)_   Tech' Author       http://sources.redhat.com/autobook   =`---d__/
Index: ChangeLog
from  Gary V. Vaughan  <address@hidden>
        * m4/m4module.c (m4_string): Moved from here...
        * m4/m4private.c (m4_string): ...to here.

Index: m4/m4module.h
===================================================================
RCS file: /cvsroot/m4/m4/m4/m4module.h,v
retrieving revision 1.63
diff -u -p -u -r1.63 m4module.h
--- m4/m4module.h 29 Jul 2003 16:11:24 -0000 1.63
+++ m4/m4module.h 7 Aug 2003 14:42:03 -0000
@@ -48,11 +48,6 @@ typedef struct {
   const char *value;
 } m4_macro;
 
-typedef struct {
-    unsigned char *string;     /* characters of the string */
-    size_t length;             /* length of the string */
-} m4_string;
-
 typedef lt_dlsymlist m4_export;
 
 
Index: m4/m4private.h
===================================================================
RCS file: /cvsroot/m4/m4/m4/m4private.h,v
retrieving revision 1.32
diff -u -p -u -r1.32 m4private.h
--- m4/m4private.h 29 Jul 2003 15:57:34 -0000 1.32
+++ m4/m4private.h 7 Aug 2003 14:42:03 -0000
@@ -212,6 +212,11 @@ extern void m4__symtab_remove_module_ref
 #define DEF_BCOMM "#"
 #define DEF_ECOMM "\n"
 
+typedef struct {
+    unsigned char *string;     /* characters of the string */
+    size_t length;             /* length of the string */
+} m4_string;
+
 struct m4_syntax_table {
   /* Please read the comment at the top of input.c for details */
   unsigned short table[256];

reply via email to

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