From 2075dd23b2f054a65d5b6165bb93579117378ca5 Mon Sep 17 00:00:00 2001 From: tg <tg@mirbsd.org> Date: Mon, 7 Mar 2011 20:08:48 +0000 Subject: [PATCH] drop unused --- lex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lex.c b/lex.c index fa0536e..0ba05dd 100644 --- a/lex.c +++ b/lex.c @@ -1,3 +1,4 @@ + /* $OpenBSD: lex.c,v 1.44 2008/07/03 17:52:08 otto Exp $ */ /*- @@ -22,7 +23,7 @@ #include "sh.h" -__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.125 2011/03/07 20:07:52 tg Exp $"); +__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.126 2011/03/07 20:08:48 tg Exp $"); /* * states while lexing word @@ -61,7 +62,7 @@ typedef struct lex_state { bool abool; /* SADELIM information */ struct { - /* SADELIM_BASH, SADELIM_MAKE */ + /* SADELIM_BASH, later extensions */ unsigned char style; /* character to search for */ unsigned char delimiter; @@ -81,7 +82,6 @@ typedef struct lex_state { #define ls_bool u.abool #define ls_adelim u.adelim #define SADELIM_BASH 0 -#define SADELIM_MAKE 1 typedef struct { Lex_state *base;