# HG changeset patch # User Ken Raeburn # Date 1021883908 0 # Node ID c6aa7f66df200cd4297611251b5354c1593a8c0b # Parent 79475bcb87bbd133a83d8d2323ab4ebafe78259a update LISP_MAKE_RVALUE comment for union, non-gcc case diff -r 79475bcb87bb -r c6aa7f66df20 src/lisp.h --- a/src/lisp.h Mon May 20 08:10:41 2002 +0000 +++ b/src/lisp.h Mon May 20 08:38:28 2002 +0000 @@ -235,7 +235,11 @@ return o; } #else -#define LISP_MAKE_RVALUE(o) (o) /* XXX - keeps arg as rvalue. */ +/* This isn't quite right - it keeps the argument as an lvalue. + Making it const via casting would help avoid code actually + modifying the location in question, but the casting could cover + other type-related bugs. */ +#define LISP_MAKE_RVALUE(o) (o) #endif #endif /* NO_UNION_TYPE */