1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

Renamed IS_Pop to IS_Drop

git-svn-id: svn://svn.cc65.org/cc65/trunk@2905 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-03-07 22:09:25 +00:00
parent 9d439d9dd2
commit 742d8c3294

View File

@ -237,7 +237,7 @@ static void FlagPragma (StrBuf* B, IntStack* Stack)
if (IS_GetCount (Stack) < 2) { if (IS_GetCount (Stack) < 2) {
Error ("Cannot pop, stack is empty"); Error ("Cannot pop, stack is empty");
} else { } else {
(void) IS_Pop (Stack); IS_Drop (Stack);
} }
/* No other arguments allowed */ /* No other arguments allowed */
return; return;