X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fcontrol%2Frepeat.c;h=d7cc544fe6e8e001268b6c37643cacc91bce7daf;hb=638a86001fe7a237bd6c19a181d796305290d72a;hp=1ab3b9c2ff7f49b4d392655aa336bd9087e0cab1;hpb=ab662a7bd2b9118befbf4c65785d5762bb1d1899;p=pspp diff --git a/src/language/control/repeat.c b/src/language/control/repeat.c index 1ab3b9c2ff..d7cc544fe6 100644 --- a/src/language/control/repeat.c +++ b/src/language/control/repeat.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2007, 2009 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2007, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -618,10 +618,10 @@ do_repeat_name (const struct getl_interface *interface) } /* Returns the line number in the source file from which the - previous line was originally obtained, or -1 if none. */ + previous line was originally obtained, or 0 if none. */ static int do_repeat_location (const struct getl_interface *interface) { struct repeat_line *line = current_line (interface); - return line ? line->line_number : -1; + return line ? line->line_number : 0; }