Include quotearg.h, since we need to quote C strings now.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 12 Nov 2002 07:23:52 +0000 (07:23 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 12 Nov 2002 07:23:52 +0000 (07:23 +0000)
(muscle_init): Quote filename as a C string.

src/muscle_tab.c

index d5f39f4..92af0df 100644 (file)
@@ -20,6 +20,7 @@
 
 #include "system.h"
 #include "hash.h"
+#include "quotearg.h"
 #include "files.h"
 #include "muscle_tab.h"
 #include "getargs.h"
@@ -64,7 +65,7 @@ muscle_init (void)
 
   /* Version and input file.  */
   MUSCLE_INSERT_STRING ("version", VERSION);
-  MUSCLE_INSERT_STRING ("filename", infile);
+  MUSCLE_INSERT_C_STRING ("filename", infile);
 }