]> granicus.if.org Git - graphviz/commitdiff
Change documentation to reflect current state of DOT parser in cgraph: disallow singl...
authorEmden Gansner <erg@research.att.com>
Wed, 20 Mar 2013 15:00:03 +0000 (11:00 -0400)
committerEmden Gansner <erg@research.att.com>
Wed, 20 Mar 2013 15:00:03 +0000 (11:00 -0400)
doc/info/lang.html
doc/infosrc/grammar
doc/infosrc/lang.2

index 439a910a26f6a8e5b0ea024d445cb414b47c4acb..3550e1902c371690e7d1e1d17851efd11ded201e 100644 (file)
@@ -65,7 +65,7 @@ Vertical bars | separate alternatives.
 <TR>
   <TD ALIGN=RIGHT><I>a_list</I></TD>
   <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>ID</I> [ <B>'='</B> <I>ID</I> ] [ <B>','</B> ] [ <I>a_list</I> ]</TD>
+  <TD ALIGN=LEFT><I>ID</I> <B>'='</B> <I>ID</I> [ <B>','</B> ] [ <I>a_list</I> ]</TD>
 </TR>
 <TR>
   <TD ALIGN=RIGHT><I>edge_stmt</I></TD>
@@ -140,9 +140,6 @@ any embedded comments will be treated as part of the strings.
 An <I>edgeop</I> is <TT>-></TT> in directed graphs and <TT>--</TT> in
 undirected graphs.
 <P>
-An <I>a_list</I> clause of the form <I>ID</I> is equivalent to
-<I>ID</I><TT>=true</TT>.
-<P>
 The language supports C++-style comments: <TT>/* */</TT> and <TT>//</TT>.
 In addition, a line beginning with a '#' character is considered a line
 output from a C preprocessor (e.g., #  34 to indicate line 34 ) and discarded.
index abdecbdf5e41bf8af5ed4e16d72d6b7c8596810d..d3d65b145c370beb7c0f32a3e79565be39955037 100644 (file)
@@ -3,7 +3,7 @@ stmt_list     = [ stmt [ ';' ]  [ stmt_list ] ]
 stmt          =  node_stmt |  edge_stmt |  attr_stmt | ID '=' ID |  subgraph
 attr_stmt     =  ( T_graph | T_node | T_edge )  attr_list
 attr_list     =  '[' [ a_list ] ']' [ attr_list ]
-a_list        =  ID [ '=' ID ] [ ',' ] [ a_list ]
+a_list        =  ID '=' ID [ ',' ] [ a_list ]
 edge_stmt     =  ( node_id | subgraph ) edgeRHS [ attr_list ]
 edgeRHS       =  edgeop ( node_id | subgraph ) [ edgeRHS ]
 node_stmt     =  node_id [ attr_list ]
index 37cd37670ca9dcb409dfd16984a89b0604e52bcb..6b01539b23fe6069832ac9293a75c49d45fc818e 100644 (file)
@@ -31,9 +31,6 @@ any embedded comments will be treated as part of the strings.
 An <I>edgeop</I> is <TT>-></TT> in directed graphs and <TT>--</TT> in
 undirected graphs.
 <P>
-An <I>a_list</I> clause of the form <I>ID</I> is equivalent to
-<I>ID</I><TT>=true</TT>.
-<P>
 The language supports C++-style comments: <TT>/* */</TT> and <TT>//</TT>.
 In addition, a line beginning with a '#' character is considered a line
 output from a C preprocessor (e.g., #  34 to indicate line 34 ) and discarded.