From ca4da46a6dfd26595306b39ffecc7488def1534b Mon Sep 17 00:00:00 2001 From: Andreas Arnez Date: Mon, 17 Oct 2022 16:18:50 +0200 Subject: [PATCH] Fix superfluous semicolons after \foreach 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! --- lzsabi.tex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lzsabi.tex b/lzsabi.tex index 9c40518..c6e3ac7 100644 --- a/lzsabi.tex +++ b/lzsabi.tex @@ -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) @@ -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};