view oldXMenu/SetAEQ.c @ 108595:a9dc4c72f652

Fix DOS build; don't override convert-standard-filename. config.bat: Remove support for DJGPP v1.x. src/Makefile.in: Fix MSDOS-related comments. msdos/sed3v2.inp (INSTALLABLES): Edit out extra ${EXEEXT} after "emacsclient". (emacsserver, timer, wakeup): Remove edit-out commands. msdos/sed1v2.inp (MSDOS_OBJ): Add w16select.o. (TERMCAP_OBJ): Add termcap.o. lisp/files.el (convert-standard-filename): Call w32-convert-standard-filename and dos-convert-standard-filename on the corresponding systems. lisp/w32-fns.el (w32-convert-standard-filename): Rename from convert-standard-filename. Doc fix. lisp/dos-fns.el (dos-convert-standard-filename): Doc fix. (convert-standard-filename): Don't defalias. (register-name-alist, make-register, register-value) (set-register-value, intdos): Obsolete aliases for the corresponding dos-* functions and variables. (dos-intdos): Add a doc string.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 15 May 2010 11:38:48 +0300
parents fec5e03aaf59
children edf631bdbb7a ec58e5c426ef 5cc91198ffb2
line wrap: on
line source

/* Copyright    Massachusetts Institute of Technology    1985	*/

#include "copyright.h"


/*
 * XMenu:	MIT Project Athena, X Window system menu package
 *
 *	XMenuSetAEQ - Set Asynchronous event queuing mode.
 *		      When enabled asynchronous events will be queue while
 *		      a menu is being displayed and restored to the X
 *		      event queue when the menu is taken down.
 *
 *	Author:		Tony Della Fera, DEC
 *			March 12, 1986
 *
 */

#include "XMenuInt.h"

XMenuSetAEQ(menu, aeq)
    register XMenu *menu;	/* Menu object to be modified. */
    register int aeq;		/* AEQ mode? */
{
    /*
     * Set the AEQ mode switch.
     */
    menu->aeq = aeq;
}

/* arch-tag: 48fc22b4-0722-4852-a044-788444e4a9dc
   (do not change this comment) */