Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f2ba34f4
Commit
f2ba34f4
authored
May 20, 2002
by
Ken Raeburn
Browse files
update LISP_MAKE_RVALUE comment for union, non-gcc case
parent
07e9823c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/lisp.h
src/lisp.h
+5
-1
No files found.
src/lisp.h
View file @
f2ba34f4
...
...
@@ -235,7 +235,11 @@ LISP_MAKE_RVALUE (Lisp_Object o)
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 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment