[Asterisk-cvs] asterisk/doc README.ael,1.1,1.2

kpfleming at lists.digium.com kpfleming at lists.digium.com
Wed Jun 22 15:19:50 CDT 2005


Update of /usr/cvsroot/asterisk/doc
In directory mongoose.digium.com:/tmp/cvs-serv15001/doc

Modified Files:
	README.ael 
Log Message:
fix goto examples (bug #4578)


Index: README.ael
===================================================================
RCS file: /usr/cvsroot/asterisk/doc/README.ael,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- README.ael	16 Jun 2005 08:47:06 -0000	1.1
+++ README.ael	22 Jun 2005 19:20:31 -0000	1.2
@@ -217,30 +217,30 @@
 	};
 	2 => {
 		Background(demo-moreinfo);
-		goto instructions;
+		goto s|instructions;
 	};
 	3 => {
 		LANGUAGE()=fr;
-		goto restart;
+		goto s|restart;
 	};
 	500 => {
 		Playback(demo-abouttotry);
-		exten => 500,n,Dial(IAX2/guest at misery.digium.com)
+		Dial(IAX2/guest at misery.digium.com);
 		Playback(demo-nogo);
-		goto instructions;
+		goto s|instructions;
 	};
 	600 => {
 		Playback(demo-echotest);
 		Echo();
 		Playback(demo-echodone);
-		goto instructions;
+		goto s|instructions;
 	};
 	# => {
 hangup:
 		Playback(demo-thanks);
 		Hangup();
 	};
-	t => goto hangup;
+	t => goto #|hangup;
 	i => Playback(invalid);
 };
 




More information about the svn-commits mailing list