Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dea9b521
Commit
dea9b521
authored
Dec 28, 2003
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(IMAGEP): New macro to test for image object type.
(Qimage): Declare extern.
parent
2e3f0f61
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/lisp.h
src/lisp.h
+5
-0
No files found.
src/lisp.h
View file @
dea9b521
...
...
@@ -1381,6 +1381,10 @@ typedef unsigned char UCHAR;
#define GC_FRAMEP(x) GC_PSEUDOVECTORP (x, PVEC_FRAME)
#define SUB_CHAR_TABLE_P(x) (CHAR_TABLE_P (x) && NILP (XCHAR_TABLE (x)->top))
/* Test for image (image . spec) */
#define IMAGEP(x) (CONSP (x) && EQ (XCAR (x), Qimage))
#define GC_EQ(x, y) EQ (x, y)
...
...
@@ -2283,6 +2287,7 @@ extern Lisp_Object Qinhibit_point_motion_hooks;
extern
Lisp_Object
Qinhibit_redisplay
,
Qdisplay
;
extern
Lisp_Object
Qinhibit_eval_during_redisplay
;
extern
Lisp_Object
Qmessage_truncate_lines
;
extern
Lisp_Object
Qimage
;
extern
Lisp_Object
Vmessage_log_max
;
extern
int
message_enable_multibyte
;
extern
Lisp_Object
echo_area_buffer
[
2
];
...
...
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