summaryrefslogtreecommitdiffstats
path: root/doc/arch.doc
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-04-22 09:38:10 (GMT)
committerGitHub <noreply@github.com>2018-04-22 09:38:10 (GMT)
commit88ec4b2819c70b84519e03b240e040df85341f53 (patch)
tree8c04a51eb5937c759ce65c52888a87d47245da2c /doc/arch.doc
parent400860a81526a4ad021bb2b90461dfd37aee8079 (diff)
parent824025bdec187c07b744e4a1fa0837b932d13679 (diff)
downloadDoxygen-88ec4b2819c70b84519e03b240e040df85341f53.zip
Doxygen-88ec4b2819c70b84519e03b240e040df85341f53.tar.gz
Doxygen-88ec4b2819c70b84519e03b240e040df85341f53.tar.bz2
Merge pull request #673 from albert-github/feature/bug_docu_arch
Documentation update regarding right font usage in architecture chapter
Diffstat (limited to 'doc/arch.doc')
-rw-r--r--doc/arch.doc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/arch.doc b/doc/arch.doc
index 337f4dd..03c87b9 100644
--- a/doc/arch.doc
+++ b/doc/arch.doc
@@ -190,12 +190,12 @@ could extract information from the XML output. Possible tools could be:
Since doxygen uses a lot of \c flex code it is important to understand
how \c flex works (for this one should read the \c man page)
and to understand what it is doing when \c flex is parsing some input.
-Fortunately, when flex is used with the `-d` option it outputs what rules
+Fortunately, when \c flex is used with the `-d` option it outputs what rules
matched. This makes it quite easy to follow what is going on for a
particular input fragment.
-To make it easier to toggle debug information for a given flex file I
-wrote the following perl script, which automatically adds or removes `-d`
+To make it easier to toggle debug information for a given \c flex file I
+wrote the following \c perl script, which automatically adds or removes `-d`
from the correct line in the \c Makefile:
\verbatim
@@ -240,7 +240,7 @@ $now = time;
utime $now, $now, $file;
\endverbatim
Another way to get rules matching / debugging information
-from the \c flex code is setting LEX_FLAGS with \c make (`make LEX_FLAGS=-d`).
+from the \c flex code is setting \c LEX_FLAGS with \c make (`make LEX_FLAGS=-d`).
Note that by running doxygen with `-d lex` you get information about which
`flex codefile` is used.