Make property name rule consistent.

This commit is contained in:
Dave Davenport 2017-05-11 18:25:38 +02:00
parent ed11c3265d
commit 76244fedc0
1 changed files with 3 additions and 1 deletions

View File

@ -513,7 +513,9 @@ t_property_color_value
;
/** Property name */
t_property_name: T_PROP_NAME { $$ = $1; }
t_property_name
: T_PROP_NAME { $$ = $1; }
;
t_entry_name_path:
T_NAME_ELEMENT { $$ = g_list_append ( NULL, $1 );}