m4-commit
[Top][All Lists]
Advanced

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

Changes to m4/modules/load.c


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

Index: m4/modules/load.c
diff -u m4/modules/load.c:1.15 m4/modules/load.c:1.16
--- m4/modules/load.c:1.15      Sun May  1 11:10:05 2005
+++ m4/modules/load.c   Thu Oct 27 16:04:03 2005
@@ -1,5 +1,5 @@
 /* GNU m4 -- A simple macro processor
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 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
@@ -93,14 +93,14 @@
 {
   /* The expansion of this builtin is a comma separated list of
      loaded modules.  */
-  lt_dlhandle handle = lt_dlhandle_next (NULL);
+  lt_dlhandle handle = m4__module_next (NULL);
 
   if (handle)
     do
       {
        m4_shipout_string (context, obs, m4_get_module_name (handle), 0, true);
 
-       if ((handle = lt_dlhandle_next (handle)))
+       if ((handle = m4__module_next (handle)))
          obstack_1grow (obs, ',');
       }
     while (handle);




reply via email to

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