From: Paul Eggert <eggert@cs.ucla.edu>
Date: Tue, 12 Nov 2002 07:23:52 +0000 (+0000)
Subject: Include quotearg.h, since we need to quote C strings now.
X-Git-Tag: BISON-1_875~308
X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/4e956a7d9e38f9a4aea59c9603c26e22d74989c5

Include quotearg.h, since we need to quote C strings now.
(muscle_init): Quote filename as a C string.
---

diff --git a/src/muscle_tab.c b/src/muscle_tab.c
index d5f39f42..92af0df7 100644
--- a/src/muscle_tab.c
+++ b/src/muscle_tab.c
@@ -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);
 }