summaryrefslogtreecommitdiff
path: root/eqn/eqn.y
diff options
context:
space:
mode:
Diffstat (limited to 'eqn/eqn.y')
-rw-r--r--eqn/eqn.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/eqn/eqn.y b/eqn/eqn.y
index c6f8fc439..ff5aef60d 100644
--- a/eqn/eqn.y
+++ b/eqn/eqn.y
@@ -21,6 +21,7 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <string.h>
#include <stdlib.h>
+#include "lib.h"
#include "box.h"
extern int non_empty_flag;
char *strsave(const char *);
@@ -263,7 +264,7 @@ number:
int n;
if (sscanf($1, "%d", &n) == 1)
$$ = n;
- delete $1;
+ a_delete $1;
}
;