]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/ltdl.h (ltdl_error_table): Added missing error code, and
authorGary V. Vaughan <gary@gnu.org>
Fri, 28 Jan 2000 01:33:33 +0000 (01:33 +0000)
committerGary V. Vaughan <gary@gnu.org>
Fri, 28 Jan 2000 01:33:33 +0000 (01:33 +0000)
fixed typo in another code.
* doc/libtool.texi (Libltdl interface): Added missing @end
clause.

ChangeLog
doc/libtool.texi
libltdl/ltdl.h

index c85b7c4a67a528cd0cf75bba24942e32d3cc0f19..8ae837773daa84fe37fdc1a98a5cbcf6296f97be 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-01-28  Gary V. Vaughan  <gary@oranda.demon.co.uk>
+
+       * libltdl/ltdl.h (ltdl_error_table): Added missing error code, and
+       fixed typo in another code.
+       * doc/libtool.texi (Libltdl interface): Added missing @end
+       clause.
+
 2000-01-27  Thomas Tanner  <tanner@ffii.org>
 
        * ltconfig.in: Oops, replace the remaining $objdir's
index a2bfb0703faa0511d91c1efbd81bef25403920d5..3122efbaf5ff09ee8d777a8904ec018fa98adafb 100644 (file)
@@ -3039,6 +3039,7 @@ you can add more of your own with @code{lt_dladderror}.  This function returns
 if (lt_dlseterror (LTDL_ERROR_NO_MEMORY) != 0)
   perror (lt_dlerror ());
 @end example
+@end deftypefun
 
 @deftypefun int lt_dlpreload (const lt_dlsymlist *@var{preloaded})
 Register the list of preloaded modules @var{preloaded}.
index 419383f623d2d9efc78f216a2a658866cf1a1abe..1bdb14c724f0ce78d4549eef725411ede0d38dee 100644 (file)
@@ -128,7 +128,8 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
        LTDL_ERROR(NO_MEMORY, "not enough memory")                      \
        LTDL_ERROR(INVALID_HANDLE, "invalid module handle")             \
        LTDL_ERROR(BUFFER_OVERFLOW, "internal buffer overflow")         \
-       LTDL_ERROR(SHUTDOWN, "library already sutdown")
+       LTDL_ERROR(INVALID_ERRORCODE, "invalid errorcode")              \
+       LTDL_ERROR(SHUTDOWN, "library already shutdown")
 
 #ifdef __STDC__ 
 #  define LTDL_ERROR(name, diagnostic) LTDL_ERROR_##name,