summaryrefslogtreecommitdiffstats
path: root/doc/arch.doc
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-03-04 11:25:21 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-03-04 11:25:21 (GMT)
commit824025bdec187c07b744e4a1fa0837b932d13679 (patch)
tree436ae56693ddfc1b83679b2433f7c37d807d0d4c /doc/arch.doc
parentb6f01ff09b17e5c2288f2418ef0a8f074456c357 (diff)
downloadDoxygen-824025bdec187c07b744e4a1fa0837b932d13679.zip
Doxygen-824025bdec187c07b744e4a1fa0837b932d13679.tar.gz
Doxygen-824025bdec187c07b744e4a1fa0837b932d13679.tar.bz2
Documentation update regarding right font usage in architecture chapter
Small update, setting program names in right font
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 e5fbbdc..a19f450 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.