From e5fbd005ca6b9f8a18b0a0eb23051078852b385e Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Fri, 28 Jan 2000 01:33:33 +0000 Subject: [PATCH] * 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. --- ChangeLog | 7 +++++++ doc/libtool.texi | 1 + libltdl/ltdl.h | 3 ++- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c85b7c4a..8ae83777 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2000-01-28 Gary V. Vaughan + + * 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 * ltconfig.in: Oops, replace the remaining $objdir's diff --git a/doc/libtool.texi b/doc/libtool.texi index a2bfb070..3122efba 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -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}. diff --git a/libltdl/ltdl.h b/libltdl/ltdl.h index 419383f6..1bdb14c7 100644 --- a/libltdl/ltdl.h +++ b/libltdl/ltdl.h @@ -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,