The PIC plugin seems to have copied some details from the core PIC
implementation (lib/common/picgen.c) without noticing that the core
implementation juggles its comment format to emit PIC comments on pages and only
use TROFF comments at the top level. Related to #131.
The first approach is used here.
*/
-static const char *EscComment = ".\\\" "; /* troff comment */
+static const char EscComment[] = "# "; /* PIC comment */
static const char picgen_msghdr[] = "dot pic plugin: ";
static void unsupported(char *s)