[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/unexec.c,v
From: |
Dan Nicolaescu |
Subject: |
[Emacs-diffs] Changes to emacs/src/unexec.c,v |
Date: |
Wed, 23 Jul 2008 08:29:25 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Dan Nicolaescu <dann> 08/07/23 08:29:24
Index: src/unexec.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/unexec.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -b -r1.52 -r1.53
--- src/unexec.c 23 Jul 2008 06:40:26 -0000 1.52
+++ src/unexec.c 23 Jul 2008 08:29:23 -0000 1.53
@@ -117,15 +117,6 @@
This macro can be used to generate statements to adjust or
initialize nonstandard fields in the file header
-* ADDR_CORRECT(ADDR)
-
-Macro to correct an int which is the bit pattern of a pointer to a byte
-into an int which is the number of a byte.
-
-This macro has a default definition which is usually right.
-This default definition is a no-op on most machines (where a
-pointer looks like an int) but not on all machines.
-
*/
#ifndef emacs
@@ -209,9 +200,7 @@
into an int which is the number of a byte.
This is a no-op on ordinary machines, but not on all. */
-#ifndef ADDR_CORRECT /* Let m-*.h files override this definition */
#define ADDR_CORRECT(x) ((char *)(x) - (char*)0)
-#endif
#ifdef emacs