12015-01-04  Paul Eggert  <eggert@cs.ucla.edu>
2
3	Less 'make' chatter for oldXMenu
4	* Makefile.in (AM_V_GEN, am__v_GEN_, am__v_GEN_0, am__v_GEN_1)
5	(AM_V_at, am__v_at_, am__v_at_0, am__v_at_1): New macros.
6	(libXMenu11.a): Use them.
7
82014-10-20  Glenn Morris  <rgm@gnu.org>
9
10	* Merge in all changes up to 24.4 release.
11
122014-09-04  Paul Eggert  <eggert@cs.ucla.edu>
13
14	Less chatter in 'make' output.
15	* Makefile.in (clean mostlyclean): Simplify, for shorter command line.
16
172014-09-01  Paul Eggert  <eggert@cs.ucla.edu>
18
19	--enable-silent-rules now suppresses more chatter.
20	* Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_CC, am__v_CC_)
21	(am__v_CC_0, am__v_CC_1): New macros, taken from Automake.
22	(.c.o): Use them.
23
242014-07-12  Dmitry Antipov  <dmantipov@yandex.ru>
25
26	* XMenuInt.h (XDeleteAssoc): Remove duplicated prototype to
27	pacify -Wredundant-decls.
28
292014-06-28  Glenn Morris  <rgm@gnu.org>
30
31	* deps.mk (${OBJS}): Depend on ../src/config.h.
32
33	* Makefile.in: Use gcc auto-dependency information.
34	Move old dependency information to new file deps.mk.
35	(MKDIR_P, DEPFLAGS, MKDEPDIR, oldxmenu_deps_frag):
36	New, set by configure.
37	(DEPDIR): New variable.
38	(ALL_CFLAGS): Add DEPFLAGS.
39	(.c.o): Add MKDEPDIR.
40	(clean, mostlyclean): Delete DEPDIR.
41	* deps.mk, autodeps.mk: New files.
42
432014-06-15  Glenn Morris  <rgm@gnu.org>
44
45	* Makefile.in (CPPFLAGS): Explicitly set via configure.
46
47	* Makefile.in (mostlyclean, clean, distclean, maintainer-clean, tags):
48	Declare as PHONY.
49	(boostrap-clean): New.
50
512013-10-24  Glenn Morris  <rgm@gnu.org>
52
53	* Makefile.in (abs_top_srcdir): New, set by configure.
54
552013-09-04  Paul Eggert  <eggert@cs.ucla.edu>
56
57	Makefile improvements.
58	* Makefile.in (all, tags): Don't use double-colon rules, as they
59	are not portable according to POSIX.  Mark as phony.
60
612012-12-04  Paul Eggert  <eggert@cs.ucla.edu>
62
63	Include <config.h> uniformly in oldXMenu sources.
64	* Activate.c, AddPane.c, AddSel.c, ChgPane.c, ChgSel.c, Create.c:
65	* InsPane.c, InsSel.c, Internal.c, XMakeAssoc.c:
66	Do not include <config.h>, since XMenuInt.h does that now.
67	* XLookAssoc.c, XMenuInt.h: Include <config.h>.
68	This avoids a build failure when configuring on Fedora 17
69	--with-x-toolkit=no, reported by Dmitry Andropov in
70	<https://lists.gnu.org/r/emacs-devel/2012-12/msg00078.html>.
71
722012-10-06  Ulrich Müller  <ulm@gentoo.org>
73
74	* Makefile.in (AR, ARFLAGS): Get values from configure.
75
762012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
77
78	* Makefile.in (ALL_CFLAGS): Add -I../lib -I${srcdir}/../lib.
79	This is needed for hosts that lack <alloca.h>, when Emacs is
80	configured --with-x-toolkit=no.  Problem reported by Herbert
81	J. Skuhra for FreeBSD.
82
832012-04-18  Paul Eggert  <eggert@cs.ucla.edu>
84
85	configure: new option --enable-gcc-warnings (Bug#11207)
86	* Makefile.in (C_WARNINGS_SWITCH): Remove.
87	(WARN_CFLAGS, WERROR_CFLAGS): New macros.
88	(ALL_CFLAGS): Use new macros rather than old.
89
902012-04-11  Glenn Morris  <rgm@gnu.org>
91
92	* Makefile.in (C_SWITCH_X_SYSTEM): Remove.
93	(ALL_CFLAGS): Remove C_SWITCH_X_SYSTEM.
94
952011-04-16  Paul Eggert  <eggert@cs.ucla.edu>
96
97	Static checks with GCC 4.6.0 and non-default toolkits.
98
99	Modernize to C89, for better static checking.
100	* Activate.c (XMenuActivate): Callback's first arg is readonly.
101	* AddPane.c (XMenuAddPane): Label is readonly.  Rename local
102	to avoid shadowing.
103	* AddSel.c (XMenuAddSelection): Help arg is readonly.  Rename local.
104	* Create.c (atoi, atof): Remove decls; include <stdlib.h>.
105	(MAX_INACT_PNUM, TILE_BUF_SIZE): Remove; unused.
106	(x_get_resource_string): Args are readonly.
107	(XAllocDisplayColor): colorName is readonly.
108	(XMenuCreate): def_env is readonly.  Remove unused locals.
109	Avoid "else;".
110	* Destroy.c (XMenuDestroy): Return void.
111	* Error.c (XMenuError): Remove const pointer.
112	* EvHand.c (XMenuEventHandler): Return void.
113	* FindPane.c, FindSel.c: Include <string.h>.
114	* InsPane.c (XMenuInsertPane): Rename local to avoid shadowing.
115	* InsSel.c (XMenuInsertSelection): Likewise.
116	* Internal.c (toggle_color, BUFFER_SIZE): Remove; unused.
117	(_XMErrorList): Now const.
118	(_XMWinQueInit, _XMRecomputeGlobals, _XMTransToOrigin, _XMRefreshPane):
119	(_XMRefreshSelection): Return void.
120	(_XMWinQueFlush, _XMRefreshSelection): Rename locals to avoid
121	shadowing.
122	(_XMWinQueFlush): Use stack, not heap.  Don't use uninitialized var.
123	* SetAEQ.c (XMenuSetAEQ): Now returns void.
124	* SetFrz.c (XMenuSetFreeze): Likewise.
125	* X10.h (XAssoc): Use void * for generic pointer.
126	* XDelAssoc.c: Include XMenuInt.h rather than duplicating part of it.
127	* XDestAssoc.c, XMakeAssoc.c: Likewise.
128	* XDestAssoc.c (XDestroyAssocTable): Return void.
129	* XMakeAssoc.c (XMakeAssoc): Use void * for generic pointer.
130	* XMenu.h, XMenuInt.h: Adjust to signature changes.  Use const
131	for pointers to readonly storage.
132	* insque.c: Include XMenuInt.h, to check our own signature.
133	(emacs_insque, emacs_remque): Use void * for generic pointers.
134
1352011-03-07  Chong Yidong  <cyd@stupidchicken.com>
136
137	* Version 23.3 released.
138
1392010-11-09  Elias Pipping  <pipping.elias@googlemail.com>  (tiny change)
140
141	Make Emacs compile with clang (bug#7309).
142	* XMakeAssoc.c (XMakeAssoc):
143	* XDelAssoc.c (XDeleteAssoc): Declare the return type.
144
1452010-07-12  Dan Nicolaescu  <dann@ics.uci.edu>
146
147	* XMenu.h: Include <stdlib.h>.
148
1492010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
150
151	* Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS): Set from
152	substitution.
153	(ALL_CFLAGS): Add ${C_WARNINGS_SWITCH} and ${PROFILING_CFLAGS}.
154
1552010-07-04  Dan Nicolaescu  <dann@ics.uci.edu>
156
157	* Activate.c: Convert function definitions to standard C.
158	* AddPane.c:
159	* AddSel.c:
160	* ChgPane.c:
161	* ChgSel.c:
162	* Create.c:
163	* DelPane.c:
164	* DelSel.c:
165	* Destroy.c:
166	* Error.c:
167	* EvHand.c:
168	* FindPane.c:
169	* FindSel.c:
170	* InsPane.c:
171	* InsSel.c:
172	* Internal.c:
173	* Locate.c:
174	* Post.c:
175	* Recomp.c:
176	* SetAEQ.c:
177	* SetFrz.c:
178	* SetPane.c:
179	* SetSel.c:
180	* X10.h:
181	* XCrAssoc.c:
182	* XDelAssoc.c:
183	* XDestAssoc.c:
184	* XLookAssoc.c:
185	* XMakeAssoc.c:
186	* XMenu.h:
187	* XMenuInt.h:
188	* insque.c: Likewise.
189
1902010-05-07  Chong Yidong  <cyd@stupidchicken.com>
191
192	* Version 23.2 released.
193
1942010-05-06  Glenn Morris  <rgm@gnu.org>
195
196	* Makefile.in (RANLIB): Let configure set it.
197	(libXMenu11.a): Configure sets RANLIB = : on systems without it.
198
199	* Makefile.in (CPP, LN_S, AS, LD, MV, LS, LINTOPTS, LINTLIBFLAG, MAKE)
200	(STD_DEFINES, CDEBUGFLAGS, RM_CMD): Remove unused variables.
201
2022010-05-04  Glenn Morris  <rgm@gnu.org>
203
204	* Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE):
205	Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
206	@c_switch_system@, @c_switch_machine@.
207
2082010-04-27  Dan Nicolaescu  <dann@ics.uci.edu>
209
210	* Makefile.in (C_SWITCH_X_SYSTEM): Define using autoconf.
211
2122010-04-23  Dan Nicolaescu  <dann@ics.uci.edu>
213
214	* Makefile.in (ALL_CFLAGS): Remove C_SWITCH_X_MACHINE, unused.
215
2162010-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
217
218	* Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
219	(C_SWITCH_X_SITE): Define using autoconf.
220
2212010-03-10  Chong Yidong  <cyd@stupidchicken.com>
222
223	* Branch for 23.2.
224
2252009-06-21  Chong Yidong  <cyd@stupidchicken.com>
226
227	* Branch for 23.1.
228
2292008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
230
231	* descrip.mms:
232	* compile.com: Remove file.
233	* Create.c: Remove VMS support.
234
2352008-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
236
237	* Makefile.in (ALL_CFLAGS): Remove reference to C_SWITCH_SITE.
238
2392007-07-25  Glenn Morris  <rgm@gnu.org>
240
241	* Relicense all FSF files to GPLv3 or later.
242
2432007-06-04  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
244
245	* ChgPane.c, ChgSel.c: Quiet --with-x-toolkit=no
246	compilation warnings: #include <config.h>.
247
2482007-06-02  Chong Yidong  <cyd@stupidchicken.com>
249
250	* Version 22.1 released.
251
2522007-05-30  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
253
254	* XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc.
255
2562007-02-27  Glenn Morris  <rgm@gnu.org>
257
258	* Imakefile: Remove unused file with no explicit legal info.
259	* Makefile.in (distclean): Remove Makefile.
260
2612007-02-25  Glenn Morris  <rgm@gnu.org>
262
263	* XCrAssoc.c, XDelAssoc.c, XDestAssoc.c, XLookAssoc.c:
264	* XMakeAssoc.c: Remove license text in favor of including
265	copyright.h, as was done in original X11 source.
266
2672004-12-27  Jan Djärv  <jan.h.d@swipnet.se>
268
269	* Activate.c (XMenuActivate): Return XM_NO_SELECT if Escape or C-g
270	was pressed.
271
2722004-11-12  Jan Djärv  <jan.h.d@swipnet.se>
273
274	* XMenu.h (XMenuActivateSetWaitFunction): New function.
275
276	* Activate.c (XMenuActivateSetWaitFunction): New function.
277	(XMenuActivate): Call wait_func if set, before XNextEvent.
278
2792002-04-22  Jan Djärv  <jan.h.d@swipnet.se>
280
281	* Activate.c: Add calls to GrabKeyboard to remove strange
282	interactions with window managers that steal keypresses.
283	Call ungrab_all instead of XtUngrabPointer.
284	(XMenuActivate): Add call to XGrabKeyboard.
285	(XMenuActivate): Add call to XUngrabKeyboard.
286
2872001-10-20  Gerd Moellmann  <gerd@gnu.org>
288
289	* (Version 21.1 released.)
290
2912001-10-05  Gerd Moellmann  <gerd@gnu.org>
292
293	* Branch for 21.1.
294
2952000-07-21  Eli Zaretskii  <eliz@is.elta.co.il>
296
297	* Activate.c (XMenuActivate): Call help callback with two more
298	arguments: the pane number and selection number.
299
3002000-01-27  Gerd Moellmann  <gerd@gnu.org>
301
302	* Activate.c (XMenuActivate): Add parameter HELP_CALLBACK.
303	Call help callback.
304
305	* Post.c (XMenuPost): Pass null help callback to XMenuActivate.
306
307	* AddSel.c (XMenuAddSelection): Add parameter HELP.
308
309	* XMenu.h (XmSelect): Add member `help_string'.
310
3111999-07-12  Richard Stallman  <rms@gnu.org>
312
313	* Version 20.4 released.
314
3151998-08-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
316
317	* Version 20.3 released.
318
3191997-09-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
320
321	* Version 20.2 released.
322
3231997-09-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
324
325	* Version 20.1 released.
326
3271996-08-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
328
329	* Version 19.33 released.
330
3311996-07-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
332
333	* Version 19.32 released.
334
3351996-06-12  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
336
337	* Internal.c (_XMRefreshSelection): Check for type SEPARATOR.
338	* InsSel.c (XMenuInsertSelection): Use SEPARATOR if nec.
339	* AddSel.c (XMenuAddSelection): Use SEPARATOR if nec.
340
341	* XMenu.h: New alternative SEPARATOR.
342
3431996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>
344
345	* Version 19.31 released.
346
3471995-11-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
348
349	* Version 19.30 released.
350
3511995-11-13  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
352
353	* Makefile.in (ALL_CFLAGS): Add some -I options.
354
355	* Activate.c, AddPane.c, AddSel.c, Create.c, InsPane.c, InsSel.c:
356	* Internal.c, XCrAssoc.c, XMakeAssoc.c: Include config.h.
357
3581995-06-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
359
360	* Version 19.29 released.
361
3621995-02-07  Richard Stallman  <rms@pogo.gnu.ai.mit.edu>
363
364	* Makefile.in (maintainer-clean): Rename from realclean.
365
3661994-10-25  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
367
368	* Makefile.in (ALL_CFLAGS): Reorder the switches more rationally.
369
3701994-10-24  Jim Wilson  (wilson@chestnut.cygnus.com)
371
372	* Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_MACHINE.
373
3741994-09-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
375
376	* Version 19.27 released.
377
3781994-09-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
379
380	* Version 19.26 released.
381
3821994-07-23  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
383
384	* Error.c (XMenuError): Make `message' static.
385
3861994-06-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
387
388	* Create.c (XAllocDisplayColor): New function.
389	Use it throughout in place of XAllocNamedColor.
390
3911994-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
392
393	* Version 19.25 released.
394
3951994-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
396
397	* Version 19.24 released.
398
3991994-05-17  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
400
401	* Create.c (XMenuCreate): Declare `data' as char*.
402
4031994-05-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
404
405	* Version 19.23 released.
406
4071994-04-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
408
409	* Create.c (XMenuCreate): Declare `data' as unsigned char*.
410
4111994-01-03  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
412
413	* XMakeAssoc.c (XMakeAssoc): Use xmalloc.
414	(_XIOErrorFunction): Decl deleted.
415
4161993-11-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
417
418	* Version 19.22 released.
419
4201993-11-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
421
422	* Activate.c (XMenuActivate):
423	Call XSetWindowBackground and _XMRefreshPane.
424
4251993-11-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
426
427	* Version 19.21 released.
428
4291993-11-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
430
431	* Makefile.in (libXMenu11.a): Tell make not to worry if ranlib fails.
432	Tell user too, in case make doesn't pay attention.
433
4341993-11-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
435
436	* Version 19.20 released.
437
4381993-10-25  Brian J. Fox  (bfox@albert.gnu.ai.mit.edu)
439
440	* Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_SYSTEM.
441
4421993-09-27  Brian J. Fox  (bfox@valhalla)
443
444	* Makefile.in (CPP, LN_S, C_SWITCH_X_SITE, CC, CFLAGS):
445	Allow `configure' to supply the values for these variables.
446
4471993-09-26  Brian J. Fox  (bfox@ai.mit.edu)
448
449	* Makefile.in (VPATH, srcdir): Now that `configure' creates the
450	Makefiles, do not append the current directory to the value of
451	`srcdir' or `VPATH'.
452
4531993-08-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
454
455	* Version 19.19 released.
456
4571993-08-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
458
459	* Version 19.18 released.
460
4611993-07-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
462
463	* Internal.c (_XMWinQueInit): Use explicit loop, not bzero.
464
4651993-07-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
466
467	* Makefile (ALL_CFLAGS): Use all 6 C_SWITCH_... vars.
468
469	Among them, put the ..._SITE vars last.
470
4711993-07-18  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
472
473	* Version 19.17 released.
474
4751993-07-07  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
476
477	* Makefile.in: Write out the dependencies for the object files;
478	otherwise, VPATH won't work.
479
480	* Makefile.in: Re-arrange, to put `all' target at the top.
481
4821993-07-06  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
483
484	* Version 19.16 released.
485
4861993-06-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
487
488	* version 19.15 released.
489
4901993-06-18  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
491
492	* Makefile.in (ALL_CFLAGS): Always #define EMACS_BITMAP_FILES.
493	This should make it work under any circumstances.
494
495	* Makefile.in (mostlyclean): Use rm -f.
496
4971993-06-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
498
499	* Version 19.14 released.
500
5011993-06-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
502
503	* Makefile.in (ALL_CFLAGS): Include C_SWITCH_MACHINE, and CPPFLAGS.
504	Put CFLAGS last.
505
5061993-06-16  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
507
508	Bring mumbleclean targets into conformance with GNU coding standards.
509	* Makefile.in (mostlyclean, realclean): New targets.
510
5111993-06-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
512
513	* Version 19.13 released.
514
5151993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
516
517	* Version 19.10 released.
518
5191993-05-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
520
521	* Create.c: Handle EMACS_BITMAP_FILES.
522	Use new names of renamed bitmap files.
523
5241993-05-28  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
525
526	* AddPane.c, AddSel.c, DelPane.c, DelSel.c, InsPane.c, InsSel.c,
527	XDelAssoc.c, XMakeAssoc.c, XMenu.h, insque.c: Changed all uses of
528	insque and remque to emacs_insque and emacs_remque, so we can
529	safely include insque.c in the library on all systems.
530
5311993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
532
533	* Makefile.in (.c.o): Use $< instead of ${srcdir}/$*.c; the latter
534	only works with GNU Make.
535
5361993-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
537
538	* Create.c (XMenuCreate): Use classes PaneFont and SelectionFont.
539
5401993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
541
542	* Version 19.9 released.
543
5441993-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
545
546	* Create.c (XMenuCreate): Use x_get_resource_string, not XGetDefault.
547
5481993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
549
550	* Version 19.8 released.
551
5521993-05-23  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
553
554	* Makefile.in (C_SWITCH_X_SITE): New variable, so that the
555	configuration process can correctly implement the --x-includes
556	option.
557
5581993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
559
560	* Create.c (XMenuCreate): Initialize the menu's pixmaps to None,
561	not NULL.
562
5631993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
564
565	* Version 19.7 released.
566
5671993-05-15  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
568
569	* Makefile.in: Renamed from Makefile, so that the top-level
570	makefile can edit it.
571
5721993-04-13  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
573
574	* XLookAssoc.c, XMakeAssoc.c: VMS needs <X11/Xresource.h>, not
575	<X11/Xos.h>.
576
577	* XCrAssoc.c: #include <errno.h>, not "errno.h".
578	(XCreateAssocTable): Doc fix.
579
5801993-03-24  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
581
582	* Makefile (.c.o): Include C_SWITCH_SITE and C_SWITCH_SYSTEM in
583	the options to the C compiler.
584
585	* compile.com, descrip.mms: New files for VMS from Richard
586	Levitte.
587	* XCrAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c: Use <angle
588	brackets> around the names of the X Windows #include files; VMS
589	needs this.
590	* XLookAssoc.c, XMakeAssoc.c: #include <X11/Xos.h>.  VMS needs
591	this.
592	* Create.c: On VMS, we have to look for the bitmap files in
593	`./src/bitmaps', not <X11/bitmaps>.
594
5951993-03-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
596
597	* Makefile (.c.o): Don't rm the .o files.
598
5991993-03-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
600
601	* Activate.c (XMenuActivate): If `active' field is negative,
602	don't allow selecting a string.
603
6041993-03-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
605
606	* Create.c (XMenuCreate): New variable `root', holding the
607	display's default root window, so we don't have to write out
608	"RootWindow (display, DefaultScreen (display))" a jillion times.
609
610	* Create.c (XMenuCreate): Don't assume that all the
611	<X11/bitmaps/foo> patterns are 16x16.  Instead of building a
612	bitmap and then converting it to a pixmap of the appropriate
613	depth if necessary, build a pixmap of the appropriate depth
614	directly, using XCreatePixmapFromBitmapData.
615
616	* Imakefile: Include XCrAssoc.c, XDelAssoc.c, XDestAssoc.c,
617	XLookAssoc.c, and XMakeAssoc.c in SRCS.  Similarly for OBJS.
618
619	* XMenuInt.h: #include <stdio.h> before <X11/Xlib.h>, to avoid
620	warnings about redefining NULL.
621
622	* XMakeAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c,
623	XCrAssoc.c: #include X11/Xlib.h instead of X11/Xlibint.h.
624
625	* XMakeAssoc.c, XLookAssoc.c, XCrAssoc.c: If NULL isn't defined by
626	any of the `.h' files, define it.
627
628	* XMakeAssoc.c, XCrAssoc.c: #include <errno.h>.
629	Add an extern declaration for errno.
630
631	* XMakeAssoc.c: Add an extern declaration for _XIOErrorFunction.
632	(XMakeAssoc): Use malloc instead of Xmalloc to allocate new
633	parts of the assoc table.
634	* XCrAssoc.c (XCreateAssocTable): Same.
635
636	* XDestAssoc.c (XDestroyAssocTable): Use free instead of Xfree.
637	* XDelAssoc.c (XDeleteAssoc): Same.
638
6391992-10-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
640
641	* XMakeAssoc.c (XMakeAssoc): Use malloc, not Xmalloc.
642	* XCrAssoc.c (XCreateAssocTable): Use malloc and calloc directly.
643	* XDelAssoc.c (XDeleteAssoc): Use free, not Xfree.
644	* XDestAssoc.c (XDestroyAssocTable): Likewise.
645
6461992-10-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
647
648	* XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
649	Use Xlib.h, not Xlibint.h.
650	* XLookAssoc.c, XMakeAssoc.c, XCrAssoc.c (NULL): Define.
651	* XMakeAssoc.c, XCrAssoc.c: Include errno.h.  Declare errno.
652	* XMakeAssoc.c (_XIOErrorFunction): Declared.
653
6541992-09-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
655
656	* XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
657	Specify dir X11/ when including Xlibint.h.
658
6591992-09-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
660
661	* XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
662	New files.
663
664	* Makefile (SRCS, OBJS): Compile those files.
665
6661992-01-31  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
667
668	* Makefile (clean): Delete object files and library.
669	(distclean): New target.
670
6711992-01-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
672
673	* Makefile (libXMenu11.a): Put `-' on ranlib line.
674
6751992-01-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
676
677	* Makefile (EXTRA): New variable.
678	(libXMenu11.a): Use that.
679
680	* insque.c: New file.
681
6821992-01-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
683
684	* Makefile (CC): Assignment commented out.
685
6861991-11-16  Noah Friedman  (friedman@nutrimat)
687
688	* copyright.h: New file (copied from X11R4 distribution)
689	* All files: Replaced occurrences of #include <X11/copyright.h>
690	with #include "copyright.h".
691
6921991-10-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
693
694	* XMenu.h (enum _xmmode): Remove spurious comma.
695
696	* X10.h: New file.
697	* XMenu.h, XMenuInt.h: Include X10.h from this dir.
698
6991990-11-13  Richard Stallman  (rms@mole.ai.mit.edu)
700
701	* XMenu.h (struct _xmenu): Use unsigned long for colors.
702
7031990-11-12  Richard Stallman  (rms@mole.ai.mit.edu)
704
705	* Internal.c: Declare argument `display' in some functions.
706
7071989-08-09  Joseph Arceneaux  (jla@spiff)
708
709	* Makefile: Removed all the unnecessary X stuff.
710
711;; Local Variables:
712;; coding: utf-8
713;; End:
714
715  Copyright (C) 1993-1999, 2001-2021 Free Software Foundation, Inc.
716
717  This file is part of GNU Emacs.
718
719  GNU Emacs is free software: you can redistribute it and/or modify
720  it under the terms of the GNU General Public License as published by
721  the Free Software Foundation, either version 3 of the License, or
722  (at your option) any later version.
723
724  GNU Emacs is distributed in the hope that it will be useful,
725  but WITHOUT ANY WARRANTY; without even the implied warranty of
726  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
727  GNU General Public License for more details.
728
729  You should have received a copy of the GNU General Public License
730  along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
731