aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-09 19:46:41 +0000
committerGerd Moellmann1999-10-09 19:46:41 +0000
commita7ac64a90158285244822d93617e102ce1160101 (patch)
treeedb29c349a59614b080cb135640e631bdc33592e /src
parent700fa9d176805e56a29264af630e19a3c13450e1 (diff)
downloademacs-a7ac64a90158285244822d93617e102ce1160101.tar.gz
emacs-a7ac64a90158285244822d93617e102ce1160101.zip
(struct image): New member load_failed_p.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index e27937db7a2..c7edd020f85 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1903,6 +1903,9 @@ struct image
1903 /* Reference to the type of the image. */ 1903 /* Reference to the type of the image. */
1904 struct image_type *type; 1904 struct image_type *type;
1905 1905
1906 /* 1 means that loading the image failed. Don't try again. */
1907 unsigned load_failed_p;
1908
1906 /* A place for image types to store additional data. The member 1909 /* A place for image types to store additional data. The member
1907 data.lisp_val is marked during GC, so it's safe to store Lisp data 1910 data.lisp_val is marked during GC, so it's safe to store Lisp data
1908 there. Image types should free this data when their `free' 1911 there. Image types should free this data when their `free'