Mercurial > emacs
changeset 45375:7f3255507201
* lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR and XCDR real
rvalues in most configurations.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Sun, 19 May 2002 23:14:07 +0000 |
parents | 030fb28e7ec2 |
children | 5f614e89ea14 |
files | src/lisp.h |
diffstat | 1 files changed, 0 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lisp.h Sun May 19 23:12:30 2002 +0000 +++ b/src/lisp.h Sun May 19 23:14:07 2002 +0000 @@ -629,11 +629,6 @@ #define XCDR_AS_LVALUE(c) (XCONS ((c))->cdr) #endif -/* Okay, we're not quite ready to turn this on yet. A few files still - need to be updated and tested. */ -#undef LISP_MAKE_RVALUE -#define LISP_MAKE_RVALUE(x) (x) - /* Use these from normal code. */ #define XCAR(c) LISP_MAKE_RVALUE(XCAR_AS_LVALUE(c)) #define XCDR(c) LISP_MAKE_RVALUE(XCDR_AS_LVALUE(c))