Tab expansion.
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Thu, 10 Jan 2008 23:08:12 +0000 (23:08 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Thu, 10 Jan 2008 23:08:12 +0000 (23:08 +0000)
git-svn-id: http://svn.complang.org/ragel/trunk@390 052ea7fc-9027-0410-9066-f65837a77df0

doc/ragel-guide.tex

index 1b34b9b..704948f 100644 (file)
@@ -583,7 +583,7 @@ The \verb|import| statement scrapes a file for sequences of tokens that match
 the following forms. Ragel treats these forms as state machine definitions.
 
 \begin{itemize}
-       \setlength{\itemsep}{-2mm}
+    \setlength{\itemsep}{-2mm}
     \item \verb|name '=' number|
     \item \verb|name '=' lit_string|
     \item \verb|'define' name number|
@@ -1792,10 +1792,10 @@ consuming the line, the error recovery machine returns to the main loop.
 
 % GENERATE: erract
 % %%{
-%      machine erract;
-%      ws = ' ';
-%      address = 'foo@bar.com';
-%      date = 'Monday May 12';
+%   machine erract;
+%   ws = ' ';
+%   address = 'foo@bar.com';
+%   date = 'Monday May 12';
 \begin{inline_code}
 \begin{verbatim}
 action cmd_err { 
@@ -1827,8 +1827,8 @@ main := (
 % %% write data;
 % void f()
 % {
-%      %% write init;
-%      %% write exec;
+%   %% write init;
+%   %% write exec;
 % }
 % END GENERATE
 
@@ -3090,7 +3090,7 @@ state machines are used to handle the parsing of two types of headers.
 
 % GENERATE: call
 % %%{
-%      machine call;
+%   machine call;
 \begin{inline_code}
 \begin{verbatim}
 action return { fret; }
@@ -3117,8 +3117,8 @@ main := headers*;
 % %% write data;
 % void f()
 % {
-%      %% write init;
-%      %% write exec;
+%   %% write init;
+%   %% write exec;
 % }
 % END GENERATE