aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-10 22:53:16 +0000
committerGerd Moellmann1999-11-10 22:53:16 +0000
commit35a5514b96c8ae655e2a6995c2f0ff2a07de65ab (patch)
tree5c9a1ead998f376abc9390dc0f7b9e822c4de140
parentaebf9ad1d25132d1d8293555b9fdaccf25937398 (diff)
downloademacs-35a5514b96c8ae655e2a6995c2f0ff2a07de65ab.tar.gz
emacs-35a5514b96c8ae655e2a6995c2f0ff2a07de65ab.zip
*** empty log message ***
-rw-r--r--etc/NEWS10
-rw-r--r--src/ChangeLog10
2 files changed, 12 insertions, 8 deletions
diff --git a/etc/NEWS b/etc/NEWS
index d391ac19b81..1c5bf51b2c4 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1375,7 +1375,8 @@ IMAGE is an image specification.
1375Image specifications are lists of the form `(image PROPS)' where PROPS 1375Image specifications are lists of the form `(image PROPS)' where PROPS
1376is a property list whose keys are keyword symbols. Each 1376is a property list whose keys are keyword symbols. Each
1377specifications must contain a property `:type TYPE' with TYPE being a 1377specifications must contain a property `:type TYPE' with TYPE being a
1378symbol specifying the image type, e.g. `xbm'. 1378symbol specifying the image type, e.g. `xbm'. Properties not
1379described below are ignored.
1379 1380
1380The following is a list of properties all image types share. 1381The following is a list of properties all image types share.
1381 1382
@@ -1418,13 +1419,6 @@ search for the image in `data-directory'. Some image types support
1418building images from data. When this is done, no `:file' property 1419building images from data. When this is done, no `:file' property
1419may be present in the image specification. 1420may be present in the image specification.
1420 1421
1421`:user-data DATA'
1422
1423This property can be used to store user-defined data along with an
1424image specification. Please note that two image specifications are
1425equal only if their user-defined data properties are equal.
1426
1427
1428*** Supported image types 1422*** Supported image types
1429 1423
1430**** XBM, image type `xbm'. 1424**** XBM, image type `xbm'.
diff --git a/src/ChangeLog b/src/ChangeLog
index 6240729fe15..338f6b86fad 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
11999-11-10 Gerd Moellmann <gerd@gnu.org>
2
3 * xfns.c (QCuser_data): Removed.
4 (syms_of_xfns): Initialization of QCuser_data removed.
5 (parse_image_spec): Don't handle :user-data specially. Allow
6 unknown keys. Remove parameter ALLOW_OTHER_KEYS.
7 (xbm_image_p, xbm_load, xpm_image_p, pbm_image_p, png_image_p)
8 (tiff_image_p, jpeg_image_p, gif_image_p, gs_image_p): Call
9 parse_image_spec accordingly.
10
11999-11-09 Richard M. Stallman <rms@caffeine.ai.mit.edu> 111999-11-09 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2 12
3 * cmds.c (Fbeginning_of_line): Doc fix. 13 * cmds.c (Fbeginning_of_line): Doc fix.