mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
* syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not MOST_POSITIVE_FIXNUM.
This commit is contained in:
parent
45e9f7da84
commit
e4ecdc9c71
2 changed files with 3 additions and 1 deletions
|
|
@ -626,6 +626,8 @@
|
|||
* syntax.h: Adjust decls to match defn changes elsewhere.
|
||||
(struct gl_state_s):
|
||||
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
|
||||
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
|
||||
MOST_POSITIVE_FIXNUM.
|
||||
* sysdep.c (wait_for_termination_1, wait_for_termination)
|
||||
(interruptible_wait_for_termination, mkdir):
|
||||
Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
|
||||
|
|
|
|||
|
|
@ -258,7 +258,7 @@ do \
|
|||
else if (EQ (gl_state.object, Qt)) \
|
||||
{ \
|
||||
gl_state.b_property = 0; \
|
||||
gl_state.e_property = MOST_POSITIVE_FIXNUM; \
|
||||
gl_state.e_property = PTRDIFF_MAX; \
|
||||
gl_state.offset = 0; \
|
||||
} \
|
||||
else \
|
||||
|
|
|
|||
Loading…
Reference in a new issue