comparison src/frame.h @ 97141:840bd675fd85 before-remove-vms

* s/ms-w32.h (MULTI_KBOARD): Remove. * xterm.c: * xselect.c: * xfns.c: * window.c: * w32term.c: * w32fns.c: * terminal.c: * termhooks.h: * term.c: * sysdep.c: * keyboard.h: * keyboard.c: * frame.h: * frame.c: * frame.c: Remove references to MULTI_KBOARD, it is now the default. * config.in: Regenerate. * config.nt (MULTI_KBOARD): Remove. * configure.in (MULTI_KBOARD): Remove.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 31 Jul 2008 02:47:32 +0000
parents 9592c50233ab
children 05d5848d935c
comparison
equal deleted inserted replaced
97140:9637a590d441 97141:840bd675fd85
496 /* All display backends seem to need these two pixel values. */ 496 /* All display backends seem to need these two pixel values. */
497 unsigned long background_pixel; 497 unsigned long background_pixel;
498 unsigned long foreground_pixel; 498 unsigned long foreground_pixel;
499 }; 499 };
500 500
501 #ifdef MULTI_KBOARD
502 #define FRAME_KBOARD(f) ((f)->terminal->kboard) 501 #define FRAME_KBOARD(f) ((f)->terminal->kboard)
503 #else
504 #define FRAME_KBOARD(f) (&the_only_kboard)
505 #endif
506 502
507 /* Return a pointer to the image cache of frame F. */ 503 /* Return a pointer to the image cache of frame F. */
508 #define FRAME_IMAGE_CACHE(F) ((F)->terminal->image_cache) 504 #define FRAME_IMAGE_CACHE(F) ((F)->terminal->image_cache)
509 505
510 typedef struct frame *FRAME_PTR; 506 typedef struct frame *FRAME_PTR;