From a9b9c1fbaef11b0252a0a2168bfe573301401190 Mon Sep 17 00:00:00 2001
From: cshapiro <cshapiro>
Date: Sun, 15 Jul 2007 06:53:34 +0000
Subject: [PATCH] Remove no-op macros.

---
 lisp/Darwin-os.h | 4 +---
 lisp/ppc-arch.c  | 4 ++--
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/lisp/Darwin-os.h b/lisp/Darwin-os.h
index d51ac2128..1c9fb272d 100644
--- a/lisp/Darwin-os.h
+++ b/lisp/Darwin-os.h
@@ -1,6 +1,6 @@
 /*
 
- $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/Darwin-os.h,v 1.5 2007/06/12 03:21:46 cshapiro Exp $
+ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/Darwin-os.h,v 1.6 2007/07/15 06:53:34 cshapiro Exp $
 
  This code was written as part of the CMU Common Lisp project at
  Carnegie Mellon University, and has been placed in the public domain.
@@ -30,8 +30,6 @@ typedef int os_vm_prot_t;
 
 #define HANDLER_ARGS int signal, siginfo_t *code, os_context_t *context
 #define CODE(code)  ((code) ? code->si_code : 0)
-#define HANDLER_GET_CONTEXT
-#define GET_CONTEXT
 #define os_context_t ucontext_t
 
 int *sc_reg(os_context_t *, int);
diff --git a/lisp/ppc-arch.c b/lisp/ppc-arch.c
index 12746c060..03034b858 100644
--- a/lisp/ppc-arch.c
+++ b/lisp/ppc-arch.c
@@ -1,6 +1,6 @@
 /*
 
- $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/ppc-arch.c,v 1.9 2006/02/19 22:56:35 rtoy Exp $
+ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/ppc-arch.c,v 1.10 2007/07/15 06:53:34 cshapiro Exp $
 
  This code was written as part of the CMU Common Lisp project at
  Carnegie Mellon University, and has been placed in the public domain.
@@ -375,7 +375,7 @@ sigill_handler(HANDLER_ARGS)
     int badinst;
     int opcode;
 
-    HANDLER_GET_CONTEXT SAVE_CONTEXT();
+    SAVE_CONTEXT();
 
     sigprocmask(SIG_SETMASK, &context->uc_sigmask, 0);
     opcode = *((int *) SC_PC(context));
-- 
GitLab