mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpgscm: Fix calculating the line number.
* tests/gpgscm/scheme.c (opexe_5): Only increment the line number on newlines. Fixes-commit: 7cc57e2c63d0fa97569736419db5c76117e7685b Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
parent
d379a0174c
commit
058c97f9fc
@ -5045,8 +5045,8 @@ static pointer opexe_5(scheme *sc, enum scheme_opcodes op) {
|
||||
int c = inchar(sc);
|
||||
if (c != '\n')
|
||||
backchar(sc,c);
|
||||
port_increment_current_line(sc,
|
||||
&sc->load_stack[sc->file_i], 1);
|
||||
else
|
||||
port_increment_current_line(sc, &sc->load_stack[sc->file_i], 1);
|
||||
sc->nesting_stack[sc->file_i]--;
|
||||
s_return(sc,reverse_in_place(sc, sc->NIL, sc->args));
|
||||
} else if (sc->tok == TOK_DOT) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user