Skip to content

Commit

Permalink
Fix superfluous semicolons after \foreach
Browse files Browse the repository at this point in the history
Remove unnecessary semicolons after \foreach within TikZ environments.
Although these superfluous characters don't impact the rendering, they
cause warnings like this:

    Missing character: There is no ; (U+003B) in font nullfont!
  • Loading branch information
aarnez committed Oct 17, 2022
1 parent dcfabd8 commit ca4da46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lzsabi.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@ \subsubsection{Register Save Area}
\draw [<->] (r2) -- (r6);
\foreach \Node in {A, B, C} {
\draw (\Node -| m.west) -- (\Node -| m.east);
};
}
\ifzseries
\foreach \where/\offs in {m.north/160, A/128, B/56, C/16, m.south/8} {
\path (\where -| m.west) +(-1ex,0)
Expand Down Expand Up @@ -1701,17 +1701,17 @@ \subsection{Parameter Passing}
};
\foreach \Node in {A, ..., D} {
\draw (\Node -| m.west) -- (\Node -| m.east);
};
}
\ifzseries
\foreach \Node/\offs in {A/+16, B/+8, C/160, D/8} {
\path (\Node -| m.west) + (-1ex,0)
node [above left] {\texttt{\offs}};
};
}
\else
\foreach \Node/\offs in {A/+8, B/+4, C/96, D/4} {
\path (\Node -| m.west) + (-1ex,0)
node [above left] {\texttt{\offs}};
};
}
\fi
\path (m.south east) +(1ex,0) node [above right] {Low Address};
\path (m.north east) +(1ex,0) node [below right] {High Address};
Expand Down

0 comments on commit ca4da46

Please sign in to comment.