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