m4-commit
[Top][All Lists]
Advanced

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

Changes to m4/m4/builtin.c


From: Gary V . Vaughan
Subject: Changes to m4/m4/builtin.c
Date: Thu, 27 Oct 2005 12:04:05 -0400

Index: m4/m4/builtin.c
diff -u m4/m4/builtin.c:1.24 m4/m4/builtin.c:1.25
--- m4/m4/builtin.c:1.24        Sun May  1 11:10:05 2005
+++ m4/m4/builtin.c     Thu Oct 27 16:04:03 2005
@@ -1,5 +1,5 @@
 /* GNU m4 -- A simple macro processor
-   Copyright (C) 1989-1994, 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1989-1994, 1999, 2000, 2005 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
@@ -27,7 +27,7 @@
 const m4_builtin *
 m4_builtin_find_by_name (lt_dlhandle handle, const char *name)
 {
-  lt_dlhandle cur = handle ? handle : lt_dlhandle_next (0);
+  lt_dlhandle cur = handle ? handle : m4__module_next (0);
 
   do
     {
@@ -41,7 +41,7 @@
              return builtin;
        }
     }
-  while (!handle && (cur = lt_dlhandle_next (cur)));
+  while (!handle && (cur = m4__module_next (cur)));
 
   return 0;
 }
@@ -51,7 +51,7 @@
 const m4_builtin *
 m4_builtin_find_by_func (lt_dlhandle handle, m4_builtin_func *func)
 {
-  lt_dlhandle cur = handle ? handle : lt_dlhandle_next (0);
+  lt_dlhandle cur = handle ? handle : m4__module_next (0);
 
   do
     {
@@ -65,7 +65,7 @@
              return builtin;
        }
     }
-  while (!handle && (cur = lt_dlhandle_next (cur)));
+  while (!handle && (cur = m4__module_next (cur)));
 
   return 0;
 }




reply via email to

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