From: Paul Eggert Date: Sun, 3 Nov 2002 08:41:08 +0000 (+0000) Subject: (LOCATION_COLUMNS, LOCATION_LINES): Remove; no longer used. X-Git-Tag: BISON-1_875~360 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/565a33db8fd3fd26aabca0a93693b266667ee6f3 (LOCATION_COLUMNS, LOCATION_LINES): Remove; no longer used. --- diff --git a/src/location.h b/src/location.h index 94afc244..7e8fe61e 100644 --- a/src/location.h +++ b/src/location.h @@ -40,20 +40,6 @@ do { \ (Loc).last_column = (Loc).last_line = 1; \ } while (0) -/* Advance of NUM columns. */ -# define LOCATION_COLUMNS(Loc, Num) \ -do { \ - (Loc).last_column += Num; \ -} while (0) - - -/* Advance of NUM lines. */ -# define LOCATION_LINES(Loc, Num) \ -do { \ - (Loc).last_column = 1; \ - (Loc).last_line += Num; \ -} while (0) - /* Restart: move the first cursor to the last position. */ # define LOCATION_STEP(Loc) \