1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Make property name rule consistent.

This commit is contained in:
Dave Davenport 2017-05-11 18:25:38 +02:00
parent ed11c3265d
commit 76244fedc0

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