projects
/
platform
/
upstream
/
bison.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42481a1
)
Include quotearg.h, since we need to quote C strings now.
author
Paul Eggert
<eggert@cs.ucla.edu>
Tue, 12 Nov 2002 07:23:52 +0000
(07:23 +0000)
committer
Paul 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
patch
|
blob
|
history
diff --git
a/src/muscle_tab.c
b/src/muscle_tab.c
index
d5f39f4
..
92af0df
100644
(file)
--- 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);
}