emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/lisp.h


From: Ken Raeburn
Subject: [Emacs-diffs] Changes to emacs/src/lisp.h
Date: Mon, 20 May 2002 04:38:28 -0400

Index: emacs/src/lisp.h
diff -c emacs/src/lisp.h:1.420 emacs/src/lisp.h:1.421
*** emacs/src/lisp.h:1.420      Mon May 20 04:06:06 2002
--- emacs/src/lisp.h    Mon May 20 04:38:28 2002
***************
*** 235,241 ****
      return o;
  }
  #else
! #define LISP_MAKE_RVALUE(o) (o) /* XXX - keeps arg as rvalue.  */
  #endif
  
  #endif /* NO_UNION_TYPE */
--- 235,245 ----
      return o;
  }
  #else
! /* 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 */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]