summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-09-12 12:15:34 +0000
committerBruno Haible <bruno@clisp.org>2001-09-12 12:15:34 +0000
commitac1431e0d99f4dea88bd6b6d27fbcbdebf39052f (patch)
tree0dd509db1b5bca7c0e0e2590946d5b134b518447 /src
parentb16df31358a0e412794bf011d38bafcc692c99b3 (diff)
downloadexternal_gettext-ac1431e0d99f4dea88bd6b6d27fbcbdebf39052f.zip
external_gettext-ac1431e0d99f4dea88bd6b6d27fbcbdebf39052f.tar.gz
external_gettext-ac1431e0d99f4dea88bd6b6d27fbcbdebf39052f.tar.bz2
Remove extraneous commas.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/x-c.h24
-rw-r--r--src/x-po.h6
3 files changed, 20 insertions, 15 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e0febc3..520bdde 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-03 Bruno Haible <haible@clisp.cons.org>
+
+ * x-c.h (EXTENSIONS_C, SCANNERS_C): Remove extraneous commas.
+ * x-po.h (EXTENSIONS_PO, SCANNERS_PO): Likewise.
+
2001-09-11 Bruno Haible <haible@clisp.cons.org>
* xgettext.c: Set msgstr_prefix to "", not NULL.
diff --git a/src/x-c.h b/src/x-c.h
index fe471d7..bc53148 100644
--- a/src/x-c.h
+++ b/src/x-c.h
@@ -18,21 +18,21 @@
#define EXTENSIONS_C \
- { "c", "C", }, \
- { "h", "C", }, \
- { "C", "C++", }, \
- { "c++", "C++", }, \
- { "cc", "C++", }, \
- { "cxx", "C++", }, \
- { "cpp", "C++", }, \
- { "hh", "C++", }, \
- { "hpp", "C++", }, \
+ { "c", "C" }, \
+ { "h", "C" }, \
+ { "C", "C++" }, \
+ { "c++", "C++" }, \
+ { "cc", "C++" }, \
+ { "cxx", "C++" }, \
+ { "cpp", "C++" }, \
+ { "hh", "C++" }, \
+ { "hpp", "C++" }, \
{ "m", "ObjectiveC" }, \
#define SCANNERS_C \
- { "C", scan_c_file, &formatstring_c, }, \
- { "C++", scan_c_file, &formatstring_c, }, \
- { "ObjectiveC", scan_c_file, &formatstring_c, }, \
+ { "C", scan_c_file, &formatstring_c }, \
+ { "C++", scan_c_file, &formatstring_c }, \
+ { "ObjectiveC", scan_c_file, &formatstring_c }, \
/* Scan a C/C++/ObjectiveC file and add its translatable strings to mdlp. */
extern void extract_c PARAMS ((FILE *fp, const char *real_filename,
diff --git a/src/x-po.h b/src/x-po.h
index f0ba705..b70ba39 100644
--- a/src/x-po.h
+++ b/src/x-po.h
@@ -18,11 +18,11 @@
#define EXTENSIONS_PO \
- { "po", "PO", }, \
- { "pot", "PO", }, \
+ { "po", "PO" }, \
+ { "pot", "PO" }, \
#define SCANNERS_PO \
- { "PO", scan_po_file, NULL, }, \
+ { "PO", scan_po_file, NULL }, \
/* Scan a PO file and add its translatable strings to mdlp. */
extern void extract_po PARAMS ((FILE *fp, const char *real_filename,