aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKaroly Lorentey2007-02-24 20:06:02 +0000
committerKaroly Lorentey2007-02-24 20:06:02 +0000
commit6baa22c1ac97113e597cee93abb607463378af0d (patch)
tree58078b16adcb477ef51e97c0886992514cb09f37 /src
parentf65f7603312547e51230192daf34349b8ac569a0 (diff)
downloademacs-6baa22c1ac97113e597cee93abb607463378af0d.tar.gz
emacs-6baa22c1ac97113e597cee93abb607463378af0d.zip
Fix compilation errors. Regenerate ldefs-boot.el.
* src/frame.c (x_set_screen_gamma, store_frame_param): Fix compilation errors. * lisp/ldefs-boot.el: Regenerate. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-597
Diffstat (limited to 'src')
-rw-r--r--src/frame.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/frame.c b/src/frame.c
index 48cca967cc1..740dac812c2 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -2341,8 +2341,6 @@ store_frame_param (f, prop, val)
2341 /* Install the chosen minibuffer window, with proper buffer. */ 2341 /* Install the chosen minibuffer window, with proper buffer. */
2342 f->minibuffer_window = val; 2342 f->minibuffer_window = val;
2343 } 2343 }
2344
2345 return Qnil;
2346} 2344}
2347 2345
2348DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0, 2346DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
@@ -3381,9 +3379,9 @@ x_set_screen_gamma (f, new_value, old_value)
3381 if (NATNUMP (index) 3379 if (NATNUMP (index)
3382 && (XFASTINT (index) 3380 && (XFASTINT (index)
3383 < sizeof (frame_parms)/sizeof (frame_parms[0])) 3381 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3384 && rif->frame_parm_handlers[XFASTINT (index)]) 3382 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3385 (*(rif->frame_parm_handlers[XFASTINT (index)])) 3383 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3386 (f, bgcolor, Qnil); 3384 (f, bgcolor, Qnil);
3387 } 3385 }
3388 3386
3389 Fclear_face_cache (Qnil); 3387 Fclear_face_cache (Qnil);