changeset 583:4bc4bc602eaf

Renamed macros acpt_* -> ac*
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 28 Nov 2006 10:07:44 +0000
parents 5ae05e02c9a0
children 4cbf7693af1e
files docs/manual.sgml ggrtf-rais.tf
diffstat 2 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/docs/manual.sgml	Tue Nov 28 07:58:00 2006 +0000
+++ b/docs/manual.sgml	Tue Nov 28 10:07:44 2006 +0000
@@ -2239,7 +2239,7 @@
   </textobject>
   <caption>
    <para>
-An example output of "/acpt_list" macro, listing the players
+An example output of "/aclist" macro, listing the players
 who have accepted services from you and respective requested
 spells for each. The time field shows how much
 time has passed from the accept.
@@ -2264,14 +2264,14 @@
   </thead>
   <tbody>
    <row>
-    <entry>/acpt_list</entry>
+    <entry>/aclist</entry>
     <entry>acc</entry>
     <entry>
 View list of people who have accepted something from you.
 </entry>
    </row>
    <row>
-    <entry>/acpt_cast [name]</entry>
+    <entry>/accast [name]</entry>
     <entry>clast [name]</entry>
     <entry>
 Cast Last-type functionality. Without arguments casts the LATEST
@@ -2280,7 +2280,7 @@
 </entry>
    </row>
    <row>
-    <entry>/acpt_clear</entry>
+    <entry>/acclear</entry>
     <entry>cclear</entry>
     <entry>
 Clears the list. Useful, if the automatic removal
--- a/ggrtf-rais.tf	Tue Nov 28 07:58:00 2006 +0000
+++ b/ggrtf-rais.tf	Tue Nov 28 10:07:44 2006 +0000
@@ -11,9 +11,9 @@
 ;; Bindings
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 /if (opt_bindings=~"on")\
-	/prdefgbind -s"cclear"	-c"/acpt_clear"%;\
-	/prdefgbind -s"acc"	-c"/acpt_list"%;\
-	/prdefgbind -s"clast"	-c"/acpt_cast"%;\
+	/prdefgbind -s"cclear"	-c"/acclear"%;\
+	/prdefgbind -s"acc"	-c"/aclist"%;\
+	/prdefgbind -s"clast"	-c"/accast"%;\
 /endif
 
 
@@ -71,7 +71,7 @@
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Implement actual commands
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-/def acpt_clear =\
+/def acclear =\
 	/msq Clearing accepted list ...%;\
 	/set lst_accepted=
 
@@ -82,7 +82,7 @@
 		/shift%;/shift%;/shift%;\
 	/done
 
-/def acpt_list =\
+/def aclist =\
 	/if (lst_accepted!~"")\
 		/msw ,-----------------.%;\
 		/msw | Latest accepted |%;\
@@ -94,7 +94,7 @@
 	/endif
 
 
-/def acpt_cast =\
+/def accast =\
 	/if (lst_accepted!~"")\
 		/if ({#} > 0)\
 			/gacpt_list_get %{1} %{lst_accepted}%;\