Index: doc/theses/mike_brooks_MMath/background.tex
===================================================================
--- doc/theses/mike_brooks_MMath/background.tex	(revision 7972603ba78a3b2d7041e7208a3c3be2479d2b37)
+++ doc/theses/mike_brooks_MMath/background.tex	(revision c40157ec46899c5e6a8afa9d8f9f0dba822d528f)
@@ -40,5 +40,5 @@
 
 TODO: typeset
-%\lstinputlisting[language=C, firstline=13, lastline=56]{bkgd-c-tyerr.c}
+\lstinputlisting[language=C, firstline=13, lastline=56]{bkgd-c-tyerr.c}
 
 
@@ -48,5 +48,5 @@
 
 TODO: typeset
-%\lstinputlisting[language=C, firstline=35, lastline=116]{bkgd-carray-arrty.c}
+\lstinputlisting[language=C, firstline=35, lastline=116]{bkgd-carray-arrty.c}
 
 My contribution is enabled by recognizing
@@ -176,5 +176,5 @@
 
 TODO: typeset
-%\lstinputlisting[language=C, firstline=4, lastline=26]{bkgd-carray-decay.c}
+\lstinputlisting[language=C, firstline=4, lastline=26]{bkgd-carray-decay.c}
 
 
@@ -229,10 +229,10 @@
 the parameter's type becomes a type that I summarize as being the array-decayed type.
 The respective handlings of the following two parameter spellings shows that the array-spelled one is really, like the other, a pointer.
-%\lstinputlisting[language=C, firstline=40, lastline=44]{bkgd-carray-decay.c}
+\lstinputlisting[language=C, firstline=40, lastline=44]{bkgd-carray-decay.c}
 As the @sizeof(x)@ meaning changed, compared with when run on a similarly-spelled local variariable declaration,
 GCC also gives this code the warning: ```sizeof' on array function parameter `x' will return size of `float *'.''
 
 The caller of such a function is left with the reality that a pointer parameter is a pointer, no matter how it's spelled:
-%\lstinputlisting[language=C, firstline=60, lastline=63]{bkgd-carray-decay.c}
+\lstinputlisting[language=C, firstline=60, lastline=63]{bkgd-carray-decay.c}
 This fragment gives no warnings.
 
@@ -240,5 +240,5 @@
 Note the opposite meaning of this spelling now, compared with its use in local variable declarations.
 This point of confusion is illustrated in:
-%\lstinputlisting[language=C, firstline=80, lastline=87]{bkgd-carray-decay.c}
+\lstinputlisting[language=C, firstline=80, lastline=87]{bkgd-carray-decay.c}
 The basic two meanings, with a syntactic difference helping to distinguish,
 are illustrated in the declarations of @ca@ vs.\ @cp@,
@@ -259,5 +259,5 @@
 Pointer decay does not affect pointer-to-array types, because these are already pointers, not arrays.
 As a result, a function with a pointer-to-array parameter sees the parameter exactly as the caller does:
-%\lstinputlisting[language=C, firstline=100, lastline=110]{bkgd-carray-decay.c}
+\lstinputlisting[language=C, firstline=100, lastline=110]{bkgd-carray-decay.c}
 
 
