]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* doc/libtool.texi (Thread Safety in libltdl),
authorOlly Betts <olly@survex.com>
Wed, 1 Jun 2005 19:16:06 +0000 (19:16 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 1 Jun 2005 19:16:06 +0000 (19:16 +0000)
libltdl/ltdl.c (argz_create_sep): Fix some typos.

ChangeLog
doc/libtool.texi
libltdl/ltdl.c

index b228670b1b7589f71e9c5421cb40624765cf8ce6..b3e14ee6482551530f76a71f9c0bf2964cd2cccb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
-2004-05-31  Peter O'Gorman  <peter@pogma.com>
+2005-06-01  Olly Betts <olly@survex.com>  (tiny change),
+           Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+       * doc/libtool.texi (Thread Safety in libltdl),
+       libltdl/ltdl.c (argz_create_sep): Fix some typos.
+
+2005-05-31  Peter O'Gorman  <peter@pogma.com>
 
        * ltmain.in: Do not add installed static litool libraries to
        convenience, they are not convenience libraries.
index 59311998f1efa19e2529ac5476e6052b2687ffdf..06969a890219620ed36a4ff58e9f71db3645973b 100644 (file)
@@ -165,7 +165,7 @@ Using libltdl
 
 * Libltdl interface::           How to use libltdl in your programs.
 * Modules for libltdl::         Creating modules that can be @code{dlopen}ed.
-* Thread Saftey in libltdl::   Registering callbacks for multi-thread safety.
+* Thread Safety in libltdl::   Registering callbacks for multi-thread safety.
 * User defined module data::    Associating data with loaded modules.
 * Module loaders for libltdl::  Creating user defined module loaders.
 * Distributing libltdl::        How to distribute libltdl with your package.
@@ -2743,7 +2743,7 @@ distribution terms that you use for the rest of that program.
 @menu
 * Libltdl interface::           How to use libltdl in your programs.
 * Modules for libltdl::         Creating modules that can be @code{dlopen}ed.
-* Thread Saftey in libltdl::   Registering callbacks for multi-thread safety.
+* Thread Safety in libltdl::   Registering callbacks for multi-thread safety.
 * User defined module data::    Associating data with loaded modules.
 * Module loaders for libltdl::  Creating user defined module loaders.
 * Distributing libltdl::        How to distribute libltdl with your package.
@@ -3074,7 +3074,7 @@ foo1_la_LDFLAGS = -module
 @end example
 
 
-@node Thread Saftey in libltdl
+@node Thread Safety in libltdl
 @section Using libtldl in a multi threaded environment
 
 Using the @code{lt_dlmutex_register()} function, and by providing some
@@ -3097,7 +3097,7 @@ The type of a matching unlock function.
 
 @deftypefn {Type} void lt_dlmutex_seterror @w{(const char *@var{error});}
 Many of the functions in the libltdl @sc{api} have a special return
-value to indicate to the client that an error has occured.  Normally (in
+value to indicate to the client that an error has occurred.  Normally (in
 single threaded applications) a string describing that error can be
 retrieved from internal storage with @code{lt_dlerror()}.
 
index fa7b39aa3070fbeb2d5e8ea57c1f1b6d637b77e8..4b99e742caf7f2c98682f0a13e86578265cd656f 100644 (file)
@@ -625,7 +625,7 @@ argz_create_sep (str, delim, pargz, pargz_len)
   assert (pargz);
   assert (pargz_len);
 
-  /* Make a copy of STR, but replacing each occurence of
+  /* Make a copy of STR, but replacing each occurrence of
      DELIM with '\0'.  */
   argz_len = 1+ LT_STRLEN (str);
   if (argz_len)