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
29eab336
Commit
29eab336
authored
Jul 18, 1991
by
Jim Blandy
Browse files
*** empty log message ***
parent
77afd1db
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/data.c
src/data.c
+1
-0
src/lisp.h
src/lisp.h
+2
-1
No files found.
src/data.c
View file @
29eab336
...
...
@@ -22,6 +22,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
#include "lisp.h"
#include "puresize.h"
#ifndef standalone
#include "buffer.h"
...
...
src/lisp.h
View file @
29eab336
...
...
@@ -282,8 +282,9 @@ Lisp_Object;
#ifndef XPNTR
#ifdef HAVE_SHM
/* In this representation, data is found in two widely separated segments. */
extern
int
pure_size
;
#define XPNTR(a) \
(XUINT (a) | (XUINT (a) >
PURESIZE
? DATA_SEG_BITS : PURE_SEG_BITS))
(XUINT (a) | (XUINT (a) >
pure_size
? DATA_SEG_BITS : PURE_SEG_BITS))
#else
/* not HAVE_SHM */
#ifdef DATA_SEG_BITS
/* This case is used for the rt-pc.
...
...
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