Include quotearg.h, since we need to quote C strings now.

(muscle_init): Quote filename as a C string.
This commit is contained in:
Paul Eggert
2002-11-12 07:23:52 +00:00
parent 42481a1fd1
commit 4e956a7d9e

View 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);
}