Skip to content

Commit

Permalink
Handle spaces in filenames (#4945)
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Oct 30, 2021
1 parent a4c435d commit 5fbbb24
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/manual/creating-a-checker.tex
Expand Up @@ -1948,7 +1948,7 @@

\begin{Verbatim}
javac -processor mypackage.MyProcessor -Aflowdotdir=. MyClass.java
for dotfile in *.dot; do dot -Tpdf -o $dotfile.pdf $dotfile; done
for dotfile in *.dot; do dot -Tpdf -o "$dotfile.pdf" "$dotfile"; done
\end{Verbatim}

\noindent
Expand All @@ -1964,7 +1964,8 @@
\subsubsectionAndLabel{Creating a CFG while running a type-checker}{creating-debugging-dataflow-graph-with-typechecker}

To create a CFG while running a type-checker, use the following
command-line options.
command-line options. \\
(See above for typical usage.)

\begin{itemize}

Expand Down

0 comments on commit 5fbbb24

Please sign in to comment.