removed @ifinfo around something needed for html structure

This commit is contained in:
Joel Sherrill
1998-03-26 20:29:08 +00:00
parent e8b63db4fa
commit b317e78c1a

View File

@@ -740,14 +740,14 @@ void BuildTexinfoNodes( void )
*/ */
new_line = AllocateLine(); new_line = AllocateLine();
strcpy( new_line->Contents, "@ifinfo" ); strcpy( new_line->Contents, "" ); /*"@ifinfo" ); */
_Chain_Insert( line->Node.previous, &new_line->Node ); _Chain_Insert( line->Node.previous, &new_line->Node );
node_line = AllocateLine(); node_line = AllocateLine();
_Chain_Insert( line->Node.previous, &node_line->Node ); _Chain_Insert( line->Node.previous, &node_line->Node );
new_line = AllocateLine(); new_line = AllocateLine();
strcpy( new_line->Contents, "@end ifinfo" ); strcpy( new_line->Contents, "" ); /* "@end ifinfo" ); */
_Chain_Insert( line->Node.previous, &new_line->Node ); _Chain_Insert( line->Node.previous, &new_line->Node );
next_node = (Line_Control *) line->Node.next; next_node = (Line_Control *) line->Node.next;