diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-18 00:59:21 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-18 01:21:55 +0200 |
commit | e3dad17e0d389ebd473ed32d38ae8d3387903c36 (patch) | |
tree | 8763bf8b398fab6e62f93e359522c3eb170d3fce | |
parent | 81d52b3cc5a93f031f24e228f87ee47ac4d8299b (diff) |
special-symbols.h: Remove symbol %DEFMACRO.
-rw-r--r-- | special-symbols.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/special-symbols.h b/special-symbols.h index c455025..9427181 100644 --- a/special-symbols.h +++ b/special-symbols.h @@ -49,7 +49,6 @@ static MLKSymbol *SYMBOL_MACROLET; static MLKSymbol *PROGV; static MLKSymbol *UNWIND_PROTECT; static MLKSymbol *VALUES; -static MLKSymbol *_DEFMACRO; static MLKSymbol *_FOREIGN_LAMBDA; static MLKSymbol *_LAMBDA; static MLKSymbol *_LOOP; @@ -98,7 +97,6 @@ ensure_symbols () PROGV = [cl intern:@"PROGV"]; VALUES = [cl intern:@"VALUES"]; UNWIND_PROTECT = [cl intern:@"UNWIND-PROTECT"]; - _DEFMACRO = [sys intern:@"%DEFMACRO"]; _FOREIGN_LAMBDA = [sys intern:@"%FOREIGN-LAMBDA"]; _LAMBDA = [sys intern:@"%LAMBDA"]; V_INITP = [sys intern:@"*SYSTEM-INITIALISED-P*"]; |