From 56cd007d12d6322a5507a88c3e1a2224cd57ca40 Mon Sep 17 00:00:00 2001
From: Martin Nilsson <mani@lysator.liu.se>
Date: Sun, 28 Oct 2001 19:04:47 +0100
Subject: [PATCH] Fixed reference

Rev: lib/master.pike.in:1.173
Rev: lib/modules/ADT.pmod/Table.pmod:1.22
Rev: lib/modules/Array.pmod:1.59
Rev: lib/modules/Thread.pmod:1.33
Rev: src/modules/Yp/module.pmod.in:1.15
---
 lib/master.pike.in              |  4 ++--
 lib/modules/ADT.pmod/Table.pmod |  6 +++---
 lib/modules/Array.pmod          |  9 ++++-----
 lib/modules/Thread.pmod         | 24 ++++++++++++------------
 src/modules/Yp/module.pmod.in   |  4 ++--
 5 files changed, 23 insertions(+), 24 deletions(-)

diff --git a/lib/master.pike.in b/lib/master.pike.in
index d376f66e6d..693c2bf18d 100644
--- a/lib/master.pike.in
+++ b/lib/master.pike.in
@@ -1,6 +1,6 @@
 /* -*- Pike -*-
  *	
- * $Id: master.pike.in,v 1.172 2001/10/26 15:21:09 grubba Exp $
+ * $Id: master.pike.in,v 1.173 2001/10/28 17:54:43 nilsson Exp $
  * 
  * Master-file for Pike.
  *
@@ -199,7 +199,7 @@ int compat_major=-1;
 int compat_minor=-1;
 
 //! @appears compile_string
-//! Compile the Pike code in the string @[data] into a program.
+//! Compile the Pike code in the string @[source] into a program.
 //! If @[filename] is not specified, it will default to @tt{"-"@}.
 //!
 //! Functionally equal to @code{@[compile](@[cpp](@[source], @[filename]))@}.
diff --git a/lib/modules/ADT.pmod/Table.pmod b/lib/modules/ADT.pmod/Table.pmod
index 4bae23b6e3..2c60675b19 100644
--- a/lib/modules/ADT.pmod/Table.pmod
+++ b/lib/modules/ADT.pmod/Table.pmod
@@ -1,5 +1,5 @@
 // Table.pmod by Fredrik Noring, 1998
-// $Id: Table.pmod,v 1.21 2001/05/10 13:09:52 grubba Exp $
+// $Id: Table.pmod,v 1.22 2001/10/28 17:56:38 nilsson Exp $
 
 #pike __REAL_VERSION__
 #define TABLE_ERR(msg) throw(({ "(Table) "+msg+"\n", backtrace() }))
@@ -206,7 +206,7 @@ class table {
     return copy(t, fields, types);
   }
 
-  //! This method calls the function @[f()] for each column each time a
+  //! This method calls the function @[f] for each column each time a
   //! non uniqe row will be joined. The table will be grouped by the
   //! columns not listed. The result will be returned as a new table object.
   object group(mapping(int|string:function)|function f, mixed ... args)
@@ -258,7 +258,7 @@ class table {
     return group(m);
   }
 
-  //! This method calls the function @[f()] for all rows in the table.
+  //! This method calls the function @[f] for all rows in the table.
   //! The value returned will replace the values in the columns given
   //! as argument to map. If the function returns an array, several
   //! columns will be replaced. Otherwise the first column will be
diff --git a/lib/modules/Array.pmod b/lib/modules/Array.pmod
index 9da05ff39a..ea42138873 100644
--- a/lib/modules/Array.pmod
+++ b/lib/modules/Array.pmod
@@ -26,7 +26,7 @@ constant enumerate = predef::enumerate;
 //! only one element, that element will be returned.
 //!
 //! @seealso
-//! @[Array.rreduce()]
+//!   @[rreduce()]
 //!
 mixed reduce(function fun, array arr, mixed|void zero)
 {
@@ -44,7 +44,7 @@ mixed reduce(function fun, array arr, mixed|void zero)
 //! only one element, that element will be returned.
 //!
 //! @seealso
-//! @[Array.reduce()]
+//!   @[reduce()]
 //!
 mixed rreduce(function fun, array arr, mixed|void zero)
 {
@@ -58,7 +58,7 @@ mixed rreduce(function fun, array arr, mixed|void zero)
 //! @[shuffle()] gives back the same elements, but in random order.
 //!
 //! @seealso
-//! @[Array.permute()]
+//!   @[permute()]
 //!
 array shuffle(array arr)
 {
@@ -81,7 +81,7 @@ array shuffle(array arr)
 //! If no call returns true, -1 is returned.
 //!
 //! @seealso
-//! @[Array.sum_arrays()], @[map()]
+//!   @[sum()], @[map()]
 //!
 int search_array(array arr, mixed fun, mixed ... args)
 {
@@ -598,7 +598,6 @@ array arrayify(void|array|mixed x)
    return ({ x });
 }
 
- 
 //! Sort with care of numerical sort for OID values:
 //! "1.2.1" before "1.11.1"
 int oid_sort_func(string a0,string b0)
diff --git a/lib/modules/Thread.pmod b/lib/modules/Thread.pmod
index f95cd36d8c..ede969b36d 100644
--- a/lib/modules/Thread.pmod
+++ b/lib/modules/Thread.pmod
@@ -29,7 +29,7 @@ optional constant all_threads = predef::all_threads;
 
 
 
-//! @[Thread.Fifo] implements a fixed length first-in, first-out queue.
+//! @[Fifo] implements a fixed length first-in, first-out queue.
 //! A fifo is a queue of values and is often used as a stream of data
 //! between two threads.
 //!
@@ -37,7 +37,7 @@ optional constant all_threads = predef::all_threads;
 //! Fifos are only available on systems with threads support.
 //!
 //! @seealso
-//! @[Thread.Queue]
+//!   @[Queue]
 //!
 optional class Fifo {
   inherit Condition : r_cond;
@@ -51,7 +51,7 @@ optional class Fifo {
   //! This function returns the number of elements currently in the fifo.
   //!
   //! @seealso
-  //! @[read()], @[write()]
+  //!   @[read()], @[write()]
   //!
   int size() {  return num; }
 
@@ -61,7 +61,7 @@ optional class Fifo {
   //! thread writes a value to the fifo.
   //!
   //! @seealso
-  //! @[write()], @[read_array()]
+  //!   @[write()], @[read_array()]
   //!
   mixed read()
   {
@@ -89,7 +89,7 @@ optional class Fifo {
   //! some other thread writes a value to the fifo.
   //!
   //! @seealso
-  //! @[write()], @[read()]
+  //!   @[write()], @[read()]
   //!
   array read_array()
   {
@@ -121,7 +121,7 @@ optional class Fifo {
   //! available.
   //!
   //! @seealso
-  //! @[read()]
+  //!   @[read()]
   //!
   void write(mixed value)
   {
@@ -164,8 +164,8 @@ optional class Fifo {
   }
 };
 
-//! @[Thread.Queue] implements a queue, or a pipeline. The main difference
-//! between @[Thread.Queue] and @[Thread.Fifo] is that @[Thread.Queue]
+//! @[Queue] implements a queue, or a pipeline. The main difference
+//! between @[Queue] and @[Fifo] is that @[Queue]
 //! will never block in write(), only allocate more memory.
 //!
 //! @note
@@ -173,7 +173,7 @@ optional class Fifo {
 //! thread support.
 //!
 //! @seealso
-//! @[Thread.Fifo]
+//!   @[Fifo]
 //!
 optional class Queue {
   inherit Condition : r_cond;
@@ -185,7 +185,7 @@ optional class Queue {
   //! This function returns the number of elements currently in the queue.
   //!
   //! @seealso
-  //! @[read()], @[write()]
+  //!   @[read()], @[write()]
   //!
   int size() {  return w_ptr - r_ptr;  }
 
@@ -195,7 +195,7 @@ optional class Queue {
   //! thread writes a value to the queue.
   //!
   //! @seealso
-  //! @[write()]
+  //!   @[write()]
   //!
   mixed read()
   {
@@ -213,7 +213,7 @@ optional class Queue {
   //! room for it.
   //!
   //! @seealso
-  //! @[read()]
+  //!   @[read()]
   //!
   void write(mixed value)
   {
diff --git a/src/modules/Yp/module.pmod.in b/src/modules/Yp/module.pmod.in
index 61fda93a5c..e6fe779f85 100644
--- a/src/modules/Yp/module.pmod.in
+++ b/src/modules/Yp/module.pmod.in
@@ -1,5 +1,5 @@
 /*
- * $Id: module.pmod.in,v 1.14 2001/04/26 14:13:09 grubba Exp $
+ * $Id: module.pmod.in,v 1.15 2001/10/28 18:04:47 nilsson Exp $
  *
  * YP (NIS) Functionality for Pike
  *
@@ -88,7 +88,7 @@ class Map {
 
   //! Call a function for each entry in the map.
   //!
-  //! For each entry in the map, call the function @[fun()].
+  //! For each entry in the map, call the function @[fun].
   //!
   //! The function will be called like
   //!   @tt{void fun(string key, string value)@}.
-- 
GitLab