aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dtd_grammar.lemon
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2018-04-30 21:55:30 +0200
committerAnders Broman <a.broman58@gmail.com>2018-05-01 06:55:55 +0000
commit488c831790405ac254ecbecb045c59b562cb4531 (patch)
tree5b908c4318d440d7f4dc9cd455130fd8eea56038 /epan/dtd_grammar.lemon
parentd25e7c8d91b46fc038f5dc9f64faf11927de0b06 (diff)
Use common indenting space in heading
Change-Id: I47022f9c7d568ca6d9705ba63c669a980822818a Reviewed-on: https://code.wireshark.org/review/27229 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dtd_grammar.lemon')
-rw-r--r--epan/dtd_grammar.lemon26
1 files changed, 13 insertions, 13 deletions
diff --git a/epan/dtd_grammar.lemon b/epan/dtd_grammar.lemon
index c122ad743a..342d7f1772 100644
--- a/epan/dtd_grammar.lemon
+++ b/epan/dtd_grammar.lemon
@@ -1,17 +1,17 @@
%include {
/* dtd_parser.lemon
-* XML dissector for wireshark
-* XML's DTD grammar
-*
-* Copyright 2005, Luis E. Garcia Ontanon <luis@ontanon.org>
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * XML dissector for wireshark
+ * XML's DTD grammar
+ *
+ * Copyright 2005, Luis E. Garcia Ontanon <luis@ontanon.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "config.h"
@@ -59,7 +59,7 @@ static GPtrArray* g_ptr_array_join(GPtrArray* a, GPtrArray* b){
%syntax_error {
if (!TOKEN)
g_string_append_printf(bd->error,"syntax error at end of file");
- else
+ else
g_string_append_printf(bd->error,"syntax error in %s at or before '%s': \n", TOKEN->location,TOKEN->text);
}
@@ -144,7 +144,7 @@ att_type ::= ATT_TYPE.
att_type ::= enumeration.
att_default ::= ATT_DEF.
-att_default ::= ATT_DEF_WITH_VALUE QUOTED.
+att_default ::= ATT_DEF_WITH_VALUE QUOTED.
att_default ::= QUOTED.
att_default ::= IMPLIED_KW.
att_default ::= REQUIRED_KW.