aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-08-23 02:27:29 +0000
committerKenichi Handa2002-08-23 02:27:29 +0000
commit0ba42da6ed10cfe38b53243c2cff429ab5c658e1 (patch)
tree36736c27f502b1d1c3d673069f9e11dd5f68c0ce /src
parent763bc839f174e63beb51b0c1d34cabb5b7d64a20 (diff)
downloademacs-0ba42da6ed10cfe38b53243c2cff429ab5c658e1.tar.gz
emacs-0ba42da6ed10cfe38b53243c2cff429ab5c658e1.zip
(enum lface_attribute_index): New member LFACE_FONTSET_INDEX.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog19
-rw-r--r--src/dispextern.h1
2 files changed, 20 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 33313492501..b2479bb0713 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,22 @@
12002-08-23 Kenichi Handa <handa@etl.go.jp>
2
3 * xfaces.c (QCfontset): New variable.
4 (LFACE_FONTSET): New macro.
5 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
6 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
7 (Finternal_set_lisp_face_attribute): Handle QCfontset.
8 (Finternal_get_lisp_face_attribute): Likewise.
9 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
10 check also LFACE_FONTSET_INDEX.
11 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
12 attrs[LFACE_FONT_INDEX].
13 (syms_of_xfaces): Intern and staticpro QCfontset.
14
15 * dispextern.h (enum lface_attribute_index): New member
16 LFACE_FONTSET_INDEX.
17
18 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
19
12002-08-21 Kenichi Handa <handa@etl.go.jp> 202002-08-21 Kenichi Handa <handa@etl.go.jp>
2 21
3 * coding.c (coding_set_destination): Fix coding->destination for 22 * coding.c (coding_set_destination): Fix coding->destination for
diff --git a/src/dispextern.h b/src/dispextern.h
index 9605d55e7bb..bba96ba8171 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1181,6 +1181,7 @@ enum lface_attribute_index
1181 LFACE_FONT_INDEX, 1181 LFACE_FONT_INDEX,
1182 LFACE_INHERIT_INDEX, 1182 LFACE_INHERIT_INDEX,
1183 LFACE_AVGWIDTH_INDEX, 1183 LFACE_AVGWIDTH_INDEX,
1184 LFACE_FONTSET_INDEX,
1184 LFACE_VECTOR_SIZE 1185 LFACE_VECTOR_SIZE
1185}; 1186};
1186 1187