aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2019-05-23 10:53:23 +0900
committerYAMAMOTO Mitsuharu2019-05-23 10:53:23 +0900
commitb40dde705af4d53853de6185a2468153b442dc9a (patch)
treee8dabba695163c2d07439fad6accff761f8f714c /src/lisp.h
parent5d7dafacf4afc888511649f6fc24c28210cd0dfc (diff)
parent03feb9376b54c489e24478954a11061e9b0d6db7 (diff)
downloademacs-b40dde705af4d53853de6185a2468153b442dc9a.tar.gz
emacs-b40dde705af4d53853de6185a2468153b442dc9a.zip
Merge branch 'master' into harfbuzz
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h
index ca833476c03..6db90596899 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -144,11 +144,13 @@ typedef intmax_t printmax_t;
144typedef uintmax_t uprintmax_t; 144typedef uintmax_t uprintmax_t;
145# define pMd PRIdMAX 145# define pMd PRIdMAX
146# define pMu PRIuMAX 146# define pMu PRIuMAX
147# define pMx PRIxMAX
147#else 148#else
148typedef EMACS_INT printmax_t; 149typedef EMACS_INT printmax_t;
149typedef EMACS_UINT uprintmax_t; 150typedef EMACS_UINT uprintmax_t;
150# define pMd pI"d" 151# define pMd pI"d"
151# define pMu pI"u" 152# define pMu pI"u"
153# define pMx pI"x"
152#endif 154#endif
153 155
154/* Use pD to format ptrdiff_t values, which suffice for indexes into 156/* Use pD to format ptrdiff_t values, which suffice for indexes into
@@ -2234,7 +2236,7 @@ INLINE int
2234} 2236}
2235 2237
2236/* Placeholder for make-docfile to process. The actual symbol 2238/* Placeholder for make-docfile to process. The actual symbol
2237 definition is done by lread.c's defsym. */ 2239 definition is done by lread.c's define_symbol. */
2238#define DEFSYM(sym, name) /* empty */ 2240#define DEFSYM(sym, name) /* empty */
2239 2241
2240 2242
@@ -2677,7 +2679,7 @@ struct Lisp_Buffer_Objfwd
2677 { 2679 {
2678 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Buffer_Obj */ 2680 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Buffer_Obj */
2679 int offset; 2681 int offset;
2680 /* One of Qnil, Qfixnump, Qsymbolp, Qstringp, Qfloatp or Qnumberp. */ 2682 /* One of Qnil, Qintegerp, Qsymbolp, Qstringp, Qfloatp or Qnumberp. */
2681 Lisp_Object predicate; 2683 Lisp_Object predicate;
2682 }; 2684 };
2683 2685
@@ -3641,7 +3643,6 @@ extern void init_fringe_once (void);
3641 3643
3642/* Defined in image.c. */ 3644/* Defined in image.c. */
3643extern int x_bitmap_mask (struct frame *, ptrdiff_t); 3645extern int x_bitmap_mask (struct frame *, ptrdiff_t);
3644extern void reset_image_types (void);
3645extern void syms_of_image (void); 3646extern void syms_of_image (void);
3646 3647
3647#ifdef HAVE_JSON 3648#ifdef HAVE_JSON