* visibility.texi: Remove duplicate word: "pointer".
authorJim Meyering <jim@meyering.net>
Sun, 27 Aug 2006 20:38:52 +0000 (20:38 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 27 Aug 2006 20:38:52 +0000 (20:38 +0000)
doc/ChangeLog
doc/visibility.texi

index 27f4e93..77d336f 100644 (file)
@@ -1,3 +1,7 @@
+2006-08-27  Jim Meyering  <jim@meyering.net>
+
+       * visibility.texi: Remove duplicate word: "pointer".
+
 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
 
        * regexprops-generic.texi: Add a copyright notice.
index 07e8836..2852361 100644 (file)
@@ -42,7 +42,7 @@ with @code{LD_PRELOAD}.) Whereas a call to a function for which the compiler
 can assume that it is in the same shared library is just a direct "call"
 instructions. Similarly for variables: A reference to a global variable
 fetches a pointer in the so-called GOT (global offset table); this pointer
-pointer to the variable's memory. So the code to access it is two memory
+to the variable's memory. So the code to access it is two memory
 load instructions. Whereas for a variable which is known to reside in the
 same shared library, it is just a direct memory access: one memory load
 instruction.