Update copyright year to 2015
[emacs.git] / oldXMenu / ChangeLog
blobd6a824ba46705cc38cb6a52cd28b27b145866346
1 2014-10-20  Glenn Morris  <rgm@gnu.org>
3         * Merge in all changes up to 24.4 release.
5 2014-09-04  Paul Eggert  <eggert@cs.ucla.edu>
7         Less chatter in 'make' output.
8         * Makefile.in (clean mostlyclean): Simplify, for shorter command line.
10 2014-09-01  Paul Eggert  <eggert@cs.ucla.edu>
12         --enable-silent-rules now suppresses more chatter.
13         * Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_CC, am__v_CC_)
14         (am__v_CC_0, am__v_CC_1): New macros, taken from Automake.
15         (.c.o): Use them.
17 2014-07-12  Dmitry Antipov  <dmantipov@yandex.ru>
19         * XMenuInt.h (XDeleteAssoc): Remove duplicated prototype to
20         pacify -Wredundant-decls.
22 2014-06-28  Glenn Morris  <rgm@gnu.org>
24         * deps.mk (${OBJS}): Depend on ../src/config.h.
26         * Makefile.in: Use gcc auto-dependency information.
27         Move old dependency information to new file deps.mk.
28         (MKDIR_P, DEPFLAGS, MKDEPDIR, oldxmenu_deps_frag):
29         New, set by configure.
30         (DEPDIR): New variable.
31         (ALL_CFLAGS): Add DEPFLAGS.
32         (.c.o): Add MKDEPDIR.
33         (clean, mostlyclean): Delete DEPDIR.
34         * deps.mk, autodeps.mk: New files.
36 2014-06-15  Glenn Morris  <rgm@gnu.org>
38         * Makefile.in (CPPFLAGS): Explicitly set via configure.
40         * Makefile.in (mostlyclean, clean, distclean, maintainer-clean, tags):
41         Declare as PHONY.
42         (boostrap-clean): New.
44 2013-10-24  Glenn Morris  <rgm@gnu.org>
46         * Makefile.in (abs_top_srcdir): New, set by configure.
48 2013-09-04  Paul Eggert  <eggert@cs.ucla.edu>
50         Makefile improvements.
51         * Makefile.in (all, tags): Don't use double-colon rules, as they
52         are not portable according to POSIX.  Mark as phony.
54 2012-12-04  Paul Eggert  <eggert@cs.ucla.edu>
56         Include <config.h> uniformly in oldXMenu sources.
57         * Activate.c, AddPane.c, AddSel.c, ChgPane.c, ChgSel.c, Create.c:
58         * InsPane.c, InsSel.c, Internal.c, XMakeAssoc.c:
59         Do not include <config.h>, since XMenuInt.h does that now.
60         * XLookAssoc.c, XMenuInt.h: Include <config.h>.
61         This avoids a build failure when configuring on Fedora 17
62         --with-x-toolkit=no, reported by Dmitry Andropov in
63         <http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00078.html>.
65 2012-10-06  Ulrich Müller  <ulm@gentoo.org>
67         * Makefile.in (AR, ARFLAGS): Get values from configure.
69 2012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
71         * Makefile.in (ALL_CFLAGS): Add -I../lib -I${srcdir}/../lib.
72         This is needed for hosts that lack <alloca.h>, when Emacs is
73         configured --with-x-toolkit=no.  Problem reported by Herbert
74         J. Skuhra for FreeBSD.
76 2012-04-18  Paul Eggert  <eggert@cs.ucla.edu>
78         configure: new option --enable-gcc-warnings (Bug#11207)
79         * Makefile.in (C_WARNINGS_SWITCH): Remove.
80         (WARN_CFLAGS, WERROR_CFLAGS): New macros.
81         (ALL_CFLAGS): Use new macros rather than old.
83 2012-04-11  Glenn Morris  <rgm@gnu.org>
85         * Makefile.in (C_SWITCH_X_SYSTEM): Remove.
86         (ALL_CFLAGS): Remove C_SWITCH_X_SYSTEM.
88 2011-04-16  Paul Eggert  <eggert@cs.ucla.edu>
90         Static checks with GCC 4.6.0 and non-default toolkits.
92         Modernize to C89, for better static checking.
93         * Activate.c (XMenuActivate): Callback's first arg is readonly.
94         * AddPane.c (XMenuAddPane): Label is readonly.  Rename local
95         to avoid shadowing.
96         * AddSel.c (XMenuAddSelection): Help arg is readonly.  Rename local.
97         * Create.c (atoi, atof): Remove decls; include <stdlib.h>.
98         (MAX_INACT_PNUM, TILE_BUF_SIZE): Remove; unused.
99         (x_get_resource_string): Args are readonly.
100         (XAllocDisplayColor): colorName is readonly.
101         (XMenuCreate): def_env is readonly.  Remove unused locals.
102         Avoid "else;".
103         * Destroy.c (XMenuDestroy): Return void.
104         * Error.c (XMenuError): Remove const pointer.
105         * EvHand.c (XMenuEventHandler): Return void.
106         * FindPane.c, FindSel.c: Include <string.h>.
107         * InsPane.c (XMenuInsertPane): Rename local to avoid shadowing.
108         * InsSel.c (XMenuInsertSelection): Likewise.
109         * Internal.c (toggle_color, BUFFER_SIZE): Remove; unused.
110         (_XMErrorList): Now const.
111         (_XMWinQueInit, _XMRecomputeGlobals, _XMTransToOrigin, _XMRefreshPane):
112         (_XMRefreshSelection): Return void.
113         (_XMWinQueFlush, _XMRefreshSelection): Rename locals to avoid
114         shadowing.
115         (_XMWinQueFlush): Use stack, not heap.  Don't use uninitialized var.
116         * SetAEQ.c (XMenuSetAEQ): Now returns void.
117         * SetFrz.c (XMenuSetFreeze): Likewise.
118         * X10.h (XAssoc): Use void * for generic pointer.
119         * XDelAssoc.c: Include XMenuInt.h rather than duplicating part of it.
120         * XDestAssoc.c, XMakeAssoc.c: Likewise.
121         * XDestAssoc.c (XDestroyAssocTable): Return void.
122         * XMakeAssoc.c (XMakeAssoc): Use void * for generic pointer.
123         * XMenu.h, XMenuInt.h: Adjust to signature changes.  Use const
124         for pointers to readonly storage.
125         * insque.c: Include XMenuInt.h, to check our own signature.
126         (emacs_insque, emacs_remque): Use void * for generic pointers.
128 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
130         * Version 23.3 released.
132 2010-11-09  Elias Pipping  <pipping.elias@googlemail.com>  (tiny change)
134         Make Emacs compile with clang (bug#7309).
135         * XMakeAssoc.c (XMakeAssoc):
136         * XDelAssoc.c (XDeleteAssoc): Declare the return type.
138 2010-07-12  Dan Nicolaescu  <dann@ics.uci.edu>
140         * XMenu.h: Include <stdlib.h>.
142 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
144         * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS): Set from
145         substitution.
146         (ALL_CFLAGS): Add ${C_WARNINGS_SWITCH} and ${PROFILING_CFLAGS}.
148 2010-07-04  Dan Nicolaescu  <dann@ics.uci.edu>
150         * Activate.c: Convert function definitions to standard C.
151         * AddPane.c:
152         * AddSel.c:
153         * ChgPane.c:
154         * ChgSel.c:
155         * Create.c:
156         * DelPane.c:
157         * DelSel.c:
158         * Destroy.c:
159         * Error.c:
160         * EvHand.c:
161         * FindPane.c:
162         * FindSel.c:
163         * InsPane.c:
164         * InsSel.c:
165         * Internal.c:
166         * Locate.c:
167         * Post.c:
168         * Recomp.c:
169         * SetAEQ.c:
170         * SetFrz.c:
171         * SetPane.c:
172         * SetSel.c:
173         * X10.h:
174         * XCrAssoc.c:
175         * XDelAssoc.c:
176         * XDestAssoc.c:
177         * XLookAssoc.c:
178         * XMakeAssoc.c:
179         * XMenu.h:
180         * XMenuInt.h:
181         * insque.c: Likewise.
183 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
185         * Version 23.2 released.
187 2010-05-06  Glenn Morris  <rgm@gnu.org>
189         * Makefile.in (RANLIB): Let configure set it.
190         (libXMenu11.a): Configure sets RANLIB = : on systems without it.
192         * Makefile.in (CPP, LN_S, AS, LD, MV, LS, LINTOPTS, LINTLIBFLAG, MAKE)
193         (STD_DEFINES, CDEBUGFLAGS, RM_CMD): Remove unused variables.
195 2010-05-04  Glenn Morris  <rgm@gnu.org>
197         * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE):
198         Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
199         @c_switch_system@, @c_switch_machine@.
201 2010-04-27  Dan Nicolaescu  <dann@ics.uci.edu>
203         * Makefile.in (C_SWITCH_X_SYSTEM): Define using autoconf.
205 2010-04-23  Dan Nicolaescu  <dann@ics.uci.edu>
207         * Makefile.in (ALL_CFLAGS): Remove C_SWITCH_X_MACHINE, unused.
209 2010-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
211         * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
212         (C_SWITCH_X_SITE): Define using autoconf.
214 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
216         * Branch for 23.2.
218 2009-06-21  Chong Yidong  <cyd@stupidchicken.com>
220         * Branch for 23.1.
222 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
224         * descrip.mms:
225         * compile.com: Remove file.
226         * Create.c: Remove VMS support.
228 2008-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
230         * Makefile.in (ALL_CFLAGS): Remove reference to C_SWITCH_SITE.
232 2007-07-25  Glenn Morris  <rgm@gnu.org>
234         * Relicense all FSF files to GPLv3 or later.
236 2007-06-04  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
238         * ChgPane.c, ChgSel.c: Quiet --with-x-toolkit=no
239         compilation warnings: #include <config.h>.
241 2007-06-02  Chong Yidong  <cyd@stupidchicken.com>
243         * Version 22.1 released.
245 2007-05-30  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
247         * XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc.
249 2007-02-27  Glenn Morris  <rgm@gnu.org>
251         * Imakefile: Remove unused file with no explicit legal info.
252         * Makefile.in (distclean): Remove Makefile.
254 2007-02-25  Glenn Morris  <rgm@gnu.org>
256         * XCrAssoc.c, XDelAssoc.c, XDestAssoc.c, XLookAssoc.c:
257         * XMakeAssoc.c: Remove license text in favor of including
258         copyright.h, as was done in original X11 source.
260 2004-12-27  Jan Djärv  <jan.h.d@swipnet.se>
262         * Activate.c (XMenuActivate): Return XM_NO_SELECT if Escape or C-g
263         was pressed.
265 2004-11-12  Jan Djärv  <jan.h.d@swipnet.se>
267         * XMenu.h (XMenuActivateSetWaitFunction): New function.
269         * Activate.c (XMenuActivateSetWaitFunction): New function.
270         (XMenuActivate): Call wait_func if set, before XNextEvent.
272 2002-04-22  Jan Djärv  <jan.h.d@swipnet.se>
274         * Activate.c: Add calls to GrabKeyboard to remove strange
275         interactions with window managers that steal keypresses.
276         Call ungrab_all instead of XtUngrabPointer.
277         (XMenuActivate): Add call to XGrabKeyboard.
278         (XMenuActivate): Add call to XUngrabKeyboard.
280 2001-10-20  Gerd Moellmann  <gerd@gnu.org>
282         * (Version 21.1 released.)
284 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
286         * Branch for 21.1.
288 2000-07-21  Eli Zaretskii  <eliz@is.elta.co.il>
290         * Activate.c (XMenuActivate): Call help callback with two more
291         arguments: the pane number and selection number.
293 2000-01-27  Gerd Moellmann  <gerd@gnu.org>
295         * Activate.c (XMenuActivate): Add parameter HELP_CALLBACK.
296         Call help callback.
298         * Post.c (XMenuPost): Pass null help callback to XMenuActivate.
300         * AddSel.c (XMenuAddSelection): Add parameter HELP.
302         * XMenu.h (XmSelect): Add member `help_string'.
304 1999-07-12  Richard Stallman  <rms@gnu.org>
306         * Version 20.4 released.
308 1998-08-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
310         * Version 20.3 released.
312 1997-09-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
314         * Version 20.2 released.
316 1997-09-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
318         * Version 20.1 released.
320 1996-08-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
322         * Version 19.33 released.
324 1996-07-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
326         * Version 19.32 released.
328 1996-06-12  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
330         * Internal.c (_XMRefreshSelection): Check for type SEPARATOR.
331         * InsSel.c (XMenuInsertSelection): Use SEPARATOR if nec.
332         * AddSel.c (XMenuAddSelection): Use SEPARATOR if nec.
334         * XMenu.h: New alternative SEPARATOR.
336 1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>
338         * Version 19.31 released.
340 1995-11-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
342         * Version 19.30 released.
344 1995-11-13  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
346         * Makefile.in (ALL_CFLAGS): Add some -I options.
348         * Activate.c, AddPane.c, AddSel.c, Create.c, InsPane.c, InsSel.c:
349         * Internal.c, XCrAssoc.c, XMakeAssoc.c: Include config.h.
351 1995-06-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
353         * Version 19.29 released.
355 1995-02-07  Richard Stallman  <rms@pogo.gnu.ai.mit.edu>
357         * Makefile.in (maintainer-clean): Rename from realclean.
359 1994-10-25  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
361         * Makefile.in (ALL_CFLAGS): Reorder the switches more rationally.
363 1994-10-24  Jim Wilson  (wilson@chestnut.cygnus.com)
365         * Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_MACHINE.
367 1994-09-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
369         * Version 19.27 released.
371 1994-09-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
373         * Version 19.26 released.
375 1994-07-23  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
377         * Error.c (XMenuError): Make `message' static.
379 1994-06-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
381         * Create.c (XAllocDisplayColor): New function.
382         Use it throughout in place of XAllocNamedColor.
384 1994-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
386         * Version 19.25 released.
388 1994-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
390         * Version 19.24 released.
392 1994-05-17  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
394         * Create.c (XMenuCreate): Declare `data' as char*.
396 1994-05-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
398         * Version 19.23 released.
400 1994-04-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
402         * Create.c (XMenuCreate): Declare `data' as unsigned char*.
404 1994-01-03  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
406         * XMakeAssoc.c (XMakeAssoc): Use xmalloc.
407         (_XIOErrorFunction): Decl deleted.
409 1993-11-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
411         * Version 19.22 released.
413 1993-11-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
415         * Activate.c (XMenuActivate):
416         Call XSetWindowBackground and _XMRefreshPane.
418 1993-11-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
420         * Version 19.21 released.
422 1993-11-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
424         * Makefile.in (libXMenu11.a): Tell make not to worry if ranlib fails.
425         Tell user too, in case make doesn't pay attention.
427 1993-11-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
429         * Version 19.20 released.
431 1993-10-25  Brian J. Fox  (bfox@albert.gnu.ai.mit.edu)
433         * Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_SYSTEM.
435 1993-09-27  Brian J. Fox  (bfox@valhalla)
437         * Makefile.in (CPP, LN_S, C_SWITCH_X_SITE, CC, CFLAGS):
438         Allow `configure' to supply the values for these variables.
440 1993-09-26  Brian J. Fox  (bfox@ai.mit.edu)
442         * Makefile.in (VPATH, srcdir): Now that `configure' creates the
443         Makefiles, do not append the current directory to the value of
444         `srcdir' or `VPATH'.
446 1993-08-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
448         * Version 19.19 released.
450 1993-08-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
452         * Version 19.18 released.
454 1993-07-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
456         * Internal.c (_XMWinQueInit): Use explicit loop, not bzero.
458 1993-07-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
460         * Makefile (ALL_CFLAGS): Use all 6 C_SWITCH_... vars.
462         Among them, put the ..._SITE vars last.
464 1993-07-18  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
466         * Version 19.17 released.
468 1993-07-07  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
470         * Makefile.in: Write out the dependencies for the object files;
471         otherwise, VPATH won't work.
473         * Makefile.in: Re-arrange, to put `all' target at the top.
475 1993-07-06  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
477         * Version 19.16 released.
479 1993-06-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
481         * version 19.15 released.
483 1993-06-18  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
485         * Makefile.in (ALL_CFLAGS): Always #define EMACS_BITMAP_FILES.
486         This should make it work under any circumstances.
488         * Makefile.in (mostlyclean): Use rm -f.
490 1993-06-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
492         * Version 19.14 released.
494 1993-06-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
496         * Makefile.in (ALL_CFLAGS): Include C_SWITCH_MACHINE, and CPPFLAGS.
497         Put CFLAGS last.
499 1993-06-16  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
501         Bring mumbleclean targets into conformance with GNU coding standards.
502         * Makefile.in (mostlyclean, realclean): New targets.
504 1993-06-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
506         * Version 19.13 released.
508 1993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
510         * Version 19.10 released.
512 1993-05-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
514         * Create.c: Handle EMACS_BITMAP_FILES.
515         Use new names of renamed bitmap files.
517 1993-05-28  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
519         * AddPane.c, AddSel.c, DelPane.c, DelSel.c, InsPane.c, InsSel.c,
520         XDelAssoc.c, XMakeAssoc.c, XMenu.h, insque.c: Changed all uses of
521         insque and remque to emacs_insque and emacs_remque, so we can
522         safely include insque.c in the library on all systems.
524 1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
526         * Makefile.in (.c.o): Use $< instead of ${srcdir}/$*.c; the latter
527         only works with GNU Make.
529 1993-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
531         * Create.c (XMenuCreate): Use classes PaneFont and SelectionFont.
533 1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
535         * Version 19.9 released.
537 1993-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
539         * Create.c (XMenuCreate): Use x_get_resource_string, not XGetDefault.
541 1993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
543         * Version 19.8 released.
545 1993-05-23  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
547         * Makefile.in (C_SWITCH_X_SITE): New variable, so that the
548         configuration process can correctly implement the --x-includes
549         option.
551 1993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
553         * Create.c (XMenuCreate): Initialize the menu's pixmaps to None,
554         not NULL.
556 1993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
558         * Version 19.7 released.
560 1993-05-15  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
562         * Makefile.in: Renamed from Makefile, so that the top-level
563         makefile can edit it.
565 1993-04-13  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
567         * XLookAssoc.c, XMakeAssoc.c: VMS needs <X11/Xresource.h>, not
568         <X11/Xos.h>.
570         * XCrAssoc.c: #include <errno.h>, not "errno.h".
571         (XCreateAssocTable): Doc fix.
573 1993-03-24  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
575         * Makefile (.c.o): Include C_SWITCH_SITE and C_SWITCH_SYSTEM in
576         the options to the C compiler.
578         * compile.com, descrip.mms: New files for VMS from Richard
579         Levitte.
580         * XCrAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c: Use <angle
581         brackets> around the names of the X Windows #include files; VMS
582         needs this.
583         * XLookAssoc.c, XMakeAssoc.c: #include <X11/Xos.h>.  VMS needs
584         this.
585         * Create.c: On VMS, we have to look for the bitmap files in
586         `./src/bitmaps', not <X11/bitmaps>.
588 1993-03-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
590         * Makefile (.c.o): Don't rm the .o files.
592 1993-03-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
594         * Activate.c (XMenuActivate): If `active' field is negative,
595         don't allow selecting a string.
597 1993-03-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
599         * Create.c (XMenuCreate): New variable `root', holding the
600         display's default root window, so we don't have to write out
601         "RootWindow (display, DefaultScreen (display))" a jillion times.
603         * Create.c (XMenuCreate): Don't assume that all the
604         <X11/bitmaps/foo> patterns are 16x16.  Instead of building a
605         bitmap and then converting it to a pixmap of the appropriate
606         depth if necessary, build a pixmap of the appropriate depth
607         directly, using XCreatePixmapFromBitmapData.
609         * Imakefile: Include XCrAssoc.c, XDelAssoc.c, XDestAssoc.c,
610         XLookAssoc.c, and XMakeAssoc.c in SRCS.  Similarly for OBJS.
612         * XMenuInt.h: #include <stdio.h> before <X11/Xlib.h>, to avoid
613         warnings about redefining NULL.
615         * XMakeAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c,
616         XCrAssoc.c: #include X11/Xlib.h instead of X11/Xlibint.h.
618         * XMakeAssoc.c, XLookAssoc.c, XCrAssoc.c: If NULL isn't defined by
619         any of the `.h' files, define it.
621         * XMakeAssoc.c, XCrAssoc.c: #include <errno.h>.
622         Add an extern declaration for errno.
624         * XMakeAssoc.c: Add an extern declaration for _XIOErrorFunction.
625         (XMakeAssoc): Use malloc instead of Xmalloc to allocate new
626         parts of the assoc table.
627         * XCrAssoc.c (XCreateAssocTable): Same.
629         * XDestAssoc.c (XDestroyAssocTable): Use free instead of Xfree.
630         * XDelAssoc.c (XDeleteAssoc): Same.
632 1992-10-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
634         * XMakeAssoc.c (XMakeAssoc): Use malloc, not Xmalloc.
635         * XCrAssoc.c (XCreateAssocTable): Use malloc and calloc directly.
636         * XDelAssoc.c (XDeleteAssoc): Use free, not Xfree.
637         * XDestAssoc.c (XDestroyAssocTable): Likewise.
639 1992-10-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
641         * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
642         Use Xlib.h, not Xlibint.h.
643         * XLookAssoc.c, XMakeAssoc.c, XCrAssoc.c (NULL): Define.
644         * XMakeAssoc.c, XCrAssoc.c: Include errno.h.  Declare errno.
645         * XMakeAssoc.c (_XIOErrorFunction): Declared.
647 1992-09-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
649         * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
650         Specify dir X11/ when including Xlibint.h.
652 1992-09-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
654         * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
655         New files.
657         * Makefile (SRCS, OBJS): Compile those files.
659 1992-01-31  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
661         * Makefile (clean): Delete object files and library.
662         (distclean): New target.
664 1992-01-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
666         * Makefile (libXMenu11.a): Put `-' on ranlib line.
668 1992-01-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
670         * Makefile (EXTRA): New variable.
671         (libXMenu11.a): Use that.
673         * insque.c: New file.
675 1992-01-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
677         * Makefile (CC): Assignment commented out.
679 1991-11-16  Noah Friedman  (friedman@nutrimat)
681         * copyright.h: New file (copied from X11R4 distribution)
682         * All files: Replaced occurrences of #include <X11/copyright.h>
683         with #include "copyright.h".
685 1991-10-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
687         * XMenu.h (enum _xmmode): Remove spurious comma.
689         * X10.h: New file.
690         * XMenu.h, XMenuInt.h: Include X10.h from this dir.
692 1990-11-13  Richard Stallman  (rms@mole.ai.mit.edu)
694         * XMenu.h (struct _xmenu): Use unsigned long for colors.
696 1990-11-12  Richard Stallman  (rms@mole.ai.mit.edu)
698         * Internal.c: Declare argument `display' in some functions.
700 1989-08-09  Joseph Arceneaux  (jla@spiff)
702         * Makefile: Removed all the unnecessary X stuff.
704 ;; Local Variables:
705 ;; coding: utf-8
706 ;; End:
708   Copyright (C) 1993-1999, 2001-2015 Free Software Foundation, Inc.
710   This file is part of GNU Emacs.
712   GNU Emacs is free software: you can redistribute it and/or modify
713   it under the terms of the GNU General Public License as published by
714   the Free Software Foundation, either version 3 of the License, or
715   (at your option) any later version.
717   GNU Emacs is distributed in the hope that it will be useful,
718   but WITHOUT ANY WARRANTY; without even the implied warranty of
719   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
720   GNU General Public License for more details.
722   You should have received a copy of the GNU General Public License
723   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.