diff options
| author | Joakim Verona | 2011-07-23 09:34:37 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-07-23 09:34:37 +0200 |
| commit | 37d53e76fafe8ba6732cbeb1c481a23ea5ade726 (patch) | |
| tree | a604697b2525954e1a712784cf1e936a9664c1de /src/frame.c | |
| parent | de37acc4249c95bd02295f7c3a8c080297335a1d (diff) | |
| parent | 043604ee51e5b5e0d0f645b999a35a1609a16b24 (diff) | |
| download | emacs-37d53e76fafe8ba6732cbeb1c481a23ea5ade726.tar.gz emacs-37d53e76fafe8ba6732cbeb1c481a23ea5ade726.zip | |
experiment send key event to xwidget. this version had som bad merges from trunk so it seems unstble
Diffstat (limited to 'src/frame.c')
| -rw-r--r-- | src/frame.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/frame.c b/src/frame.c index 635996ca424..19ce78dfd9c 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -2437,11 +2437,9 @@ use is not recommended. Explicitly check for a frame-parameter instead. */) | |||
| 2437 | val = values[i]; | 2437 | val = values[i]; |
| 2438 | store_frame_param (f, prop, val); | 2438 | store_frame_param (f, prop, val); |
| 2439 | 2439 | ||
| 2440 | /* Changing the background color might change the background | 2440 | if (EQ (prop, Qforeground_color) |
| 2441 | mode, so that we have to load new defface specs. | 2441 | || EQ (prop, Qbackground_color)) |
| 2442 | Call frame-set-background-mode to do that. */ | 2442 | update_face_from_frame_parameter (f, prop, val); |
| 2443 | if (EQ (prop, Qbackground_color)) | ||
| 2444 | call1 (Qframe_set_background_mode, frame); | ||
| 2445 | } | 2443 | } |
| 2446 | } | 2444 | } |
| 2447 | return Qnil; | 2445 | return Qnil; |