Index: doc/proposals/concurrency/text/frontpgs.tex
===================================================================
--- doc/proposals/concurrency/text/frontpgs.tex	(revision 721c3146e8e41fab1944efae204560db2b6e93cc)
+++ doc/proposals/concurrency/text/frontpgs.tex	(revision 35a4b94dad0864c014dd1bff8466acebe4ca48f2)
@@ -39,9 +39,9 @@
         \vspace*{2.0cm}
 
-        Waterloo, Ontario, Canada, 2017 \\
+        Waterloo, Ontario, Canada, 2018 \\
 
         \vspace*{1.0cm}
 
-        \copyright\ Thierry Delisle 2017 \\
+        \copyright\ Thierry Delisle 2018 \\
         \end{center}
 \end{titlepage}
@@ -154,4 +154,11 @@
 % \newpage
 
+% L I S T   O F   T A B L E S
+% -----------------------------
+\addcontentsline{toc}{chapter}{List of Acronyms}
+\printglossary[type=\acronymtype,title={List of Acronyms}]
+\cleardoublepage
+\phantomsection		% allows hyperref to link to the correct page
+
 % Change page numbering back to Arabic numerals
 \pagenumbering{arabic}
Index: doc/proposals/concurrency/thesis.tex
===================================================================
--- doc/proposals/concurrency/thesis.tex	(revision 721c3146e8e41fab1944efae204560db2b6e93cc)
+++ doc/proposals/concurrency/thesis.tex	(revision 35a4b94dad0864c014dd1bff8466acebe4ca48f2)
@@ -125,11 +125,21 @@
 \input{future}
 
-\clearpage
-\printglossary[type=\acronymtype]
-\printglossary
 
 \clearpage
+
+% B I B L I O G R A P H Y
+% -----------------------------
+\addcontentsline{toc}{chapter}{Bibliography}
 \bibliographystyle{plain}
 \bibliography{pl,local}
+\cleardoublepage
+\phantomsection		% allows hyperref to link to the correct page
+
+% G L O S S A R Y
+% -----------------------------
+\addcontentsline{toc}{chapter}{Glossary}
+\printglossary
+\cleardoublepage
+\phantomsection		% allows hyperref to link to the correct page
 
 
Index: doc/proposals/concurrency/version
===================================================================
--- doc/proposals/concurrency/version	(revision 721c3146e8e41fab1944efae204560db2b6e93cc)
+++ doc/proposals/concurrency/version	(revision 35a4b94dad0864c014dd1bff8466acebe4ca48f2)
@@ -1,1 +1,1 @@
-0.11.391
+0.11.403
Index: tools/repeat.c
===================================================================
--- tools/repeat.c	(revision 721c3146e8e41fab1944efae204560db2b6e93cc)
+++ tools/repeat.c	(revision 35a4b94dad0864c014dd1bff8466acebe4ca48f2)
@@ -26,4 +26,5 @@
 		if(print_iterations) {
 			printf("\r%d / %d", i, repetitions);
+			fflush(stdout);
 		}
 		int retcode = run();
@@ -47,7 +48,7 @@
 	fprintf(out, "Repeat CMD N times\n\n");
 	fprintf(out, "\t-h,--help\tprint this usage message\n");
-	fprintf(out, "\t-s\tstop on error\n");
-	fprintf(out, "\t-i\toutput iterations instead of CMD stdout\n");
-	fprintf(out, "\t-x\tprint CMD before running it\n");
+	fprintf(out, "\t-s\t\tstop on error\n");
+	fprintf(out, "\t-i\t\toutput iterations instead of CMD stdout\n");
+	fprintf(out, "\t-x\t\tprint CMD before running it\n");
 	exit(code);
 }
