diff doc/interpreter/func.txi @ 7031:120f3135952f

[project @ 2007-10-15 15:30:03 by jwe]
author jwe
date Mon, 15 Oct 2007 15:31:21 +0000
parents fd42779a8428
children cbedf652a752 3342d1a7c4c9
line wrap: on
line diff
--- a/doc/interpreter/func.txi	Mon Oct 15 13:20:01 2007 +0000
+++ b/doc/interpreter/func.txi	Mon Oct 15 15:31:21 2007 +0000
@@ -775,7 +775,8 @@
 @group
 function count_calls()
   persistent calls = 0;
-  printf ("'count_calls' has been called %d times\n", ++calls);
+  printf ("'count_calls' has been called %d times\n",
+          ++calls);
 endfunction
 mlock ("count_calls");
 
@@ -798,7 +799,8 @@
 function count_calls ()
   mlock ();
   persistent calls = 0;
-  printf ("'count_calls' has been called %d times\n", ++calls);
+  printf ("'count_calls' has been called %d times\n",
+          ++calls);
 endfunction
 @end group
 @end example