diff options
| author | Richard M. Stallman | 1996-08-31 02:43:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-08-31 02:43:52 +0000 |
| commit | f5e278c7c920bd4c316a6103e1c5e5c71a48887a (patch) | |
| tree | 27711e90ea077f2c13c8cbe1de74566a1ac0968f /src | |
| parent | 8a5f6f7f384a792f84e59cf7c6d30f7aae4a7f07 (diff) | |
| download | emacs-f5e278c7c920bd4c316a6103e1c5e5c71a48887a.tar.gz emacs-f5e278c7c920bd4c316a6103e1c5e5c71a48887a.zip | |
(Fset_face_attribute_internal): Set mouse_face_defer flag.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 50a80b6f91c..2d86cd6dd41 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -1213,7 +1213,10 @@ DEFUN ("set-face-attribute-internal", Fset_face_attribute_internal, | |||
| 1213 | And we must inhibit any Expose events until the redraw is done, | 1213 | And we must inhibit any Expose events until the redraw is done, |
| 1214 | since they would try to use the invalid display faces. */ | 1214 | since they would try to use the invalid display faces. */ |
| 1215 | if (garbaged) | 1215 | if (garbaged) |
| 1216 | SET_FRAME_GARBAGED (f); | 1216 | { |
| 1217 | SET_FRAME_GARBAGED (f); | ||
| 1218 | FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 1; | ||
| 1219 | } | ||
| 1217 | 1220 | ||
| 1218 | return Qnil; | 1221 | return Qnil; |
| 1219 | } | 1222 | } |