mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-25 13:55:34 -05:00
Fix position in first parsed file.
This commit is contained in:
parent
c7daf2d06c
commit
439532450a
1 changed files with 3 additions and 0 deletions
|
@ -159,6 +159,9 @@ YY_LLOC_START
|
||||||
if ( queue == NULL ){
|
if ( queue == NULL ){
|
||||||
queue = g_queue_new ( );
|
queue = g_queue_new ( );
|
||||||
yylloc->filename = current->filename;
|
yylloc->filename = current->filename;
|
||||||
|
// unsure why todo this.
|
||||||
|
yylloc->first_line = yylloc->last_line = 1;
|
||||||
|
yylloc->first_column = yylloc->last_column = 1;
|
||||||
}
|
}
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue