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
1fc31814
Commit
1fc31814
authored
Mar 21, 1995
by
Richard M. Stallman
Browse files
(CHECK_IMPURE): Declare my_edata as char array.
parent
bb8a51f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/puresize.h
src/puresize.h
+2
-2
No files found.
src/puresize.h
View file @
1fc31814
...
...
@@ -73,14 +73,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* when PNTR_COMPARISON_TYPE is not the default (unsigned int) */
#define CHECK_IMPURE(obj) \
{ extern
EMACS_INT
my_edata; \
{ extern
char
my_edata
[]
; \
if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) &my_edata) \
pure_write_error (); }
#else
/* not VIRT_ADDRESS_VARIES, not PNTR_COMPARISON_TYPE */
#define CHECK_IMPURE(obj) \
{ extern
EMACS_INT
my_edata; \
{ extern
char
my_edata
[]
; \
if (XPNTR (obj) < (unsigned int) &my_edata) \
pure_write_error (); }
...
...
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