]> code.delx.au - gnu-emacs/blob - oldXMenu/ChangeLog
Update copyright year to 2015
[gnu-emacs] / oldXMenu / ChangeLog
1 2014-10-20 Glenn Morris <rgm@gnu.org>
2
3 * Merge in all changes up to 24.4 release.
4
5 2014-09-04 Paul Eggert <eggert@cs.ucla.edu>
6
7 Less chatter in 'make' output.
8 * Makefile.in (clean mostlyclean): Simplify, for shorter command line.
9
10 2014-09-01 Paul Eggert <eggert@cs.ucla.edu>
11
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.
16
17 2014-07-12 Dmitry Antipov <dmantipov@yandex.ru>
18
19 * XMenuInt.h (XDeleteAssoc): Remove duplicated prototype to
20 pacify -Wredundant-decls.
21
22 2014-06-28 Glenn Morris <rgm@gnu.org>
23
24 * deps.mk (${OBJS}): Depend on ../src/config.h.
25
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.
35
36 2014-06-15 Glenn Morris <rgm@gnu.org>
37
38 * Makefile.in (CPPFLAGS): Explicitly set via configure.
39
40 * Makefile.in (mostlyclean, clean, distclean, maintainer-clean, tags):
41 Declare as PHONY.
42 (boostrap-clean): New.
43
44 2013-10-24 Glenn Morris <rgm@gnu.org>
45
46 * Makefile.in (abs_top_srcdir): New, set by configure.
47
48 2013-09-04 Paul Eggert <eggert@cs.ucla.edu>
49
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.
53
54 2012-12-04 Paul Eggert <eggert@cs.ucla.edu>
55
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>.
64
65 2012-10-06 Ulrich Müller <ulm@gentoo.org>
66
67 * Makefile.in (AR, ARFLAGS): Get values from configure.
68
69 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
70
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.
75
76 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
77
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.
82
83 2012-04-11 Glenn Morris <rgm@gnu.org>
84
85 * Makefile.in (C_SWITCH_X_SYSTEM): Remove.
86 (ALL_CFLAGS): Remove C_SWITCH_X_SYSTEM.
87
88 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
89
90 Static checks with GCC 4.6.0 and non-default toolkits.
91
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.
127
128 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
129
130 * Version 23.3 released.
131
132 2010-11-09 Elias Pipping <pipping.elias@googlemail.com> (tiny change)
133
134 Make Emacs compile with clang (bug#7309).
135 * XMakeAssoc.c (XMakeAssoc):
136 * XDelAssoc.c (XDeleteAssoc): Declare the return type.
137
138 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
139
140 * XMenu.h: Include <stdlib.h>.
141
142 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
143
144 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS): Set from
145 substitution.
146 (ALL_CFLAGS): Add ${C_WARNINGS_SWITCH} and ${PROFILING_CFLAGS}.
147
148 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
149
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.
182
183 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
184
185 * Version 23.2 released.
186
187 2010-05-06 Glenn Morris <rgm@gnu.org>
188
189 * Makefile.in (RANLIB): Let configure set it.
190 (libXMenu11.a): Configure sets RANLIB = : on systems without it.
191
192 * Makefile.in (CPP, LN_S, AS, LD, MV, LS, LINTOPTS, LINTLIBFLAG, MAKE)
193 (STD_DEFINES, CDEBUGFLAGS, RM_CMD): Remove unused variables.
194
195 2010-05-04 Glenn Morris <rgm@gnu.org>
196
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@.
200
201 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
202
203 * Makefile.in (C_SWITCH_X_SYSTEM): Define using autoconf.
204
205 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
206
207 * Makefile.in (ALL_CFLAGS): Remove C_SWITCH_X_MACHINE, unused.
208
209 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
210
211 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
212 (C_SWITCH_X_SITE): Define using autoconf.
213
214 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
215
216 * Branch for 23.2.
217
218 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
219
220 * Branch for 23.1.
221
222 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
223
224 * descrip.mms:
225 * compile.com: Remove file.
226 * Create.c: Remove VMS support.
227
228 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
229
230 * Makefile.in (ALL_CFLAGS): Remove reference to C_SWITCH_SITE.
231
232 2007-07-25 Glenn Morris <rgm@gnu.org>
233
234 * Relicense all FSF files to GPLv3 or later.
235
236 2007-06-04 Ulrich Mueller <ulm@gentoo.org> (tiny change)
237
238 * ChgPane.c, ChgSel.c: Quiet --with-x-toolkit=no
239 compilation warnings: #include <config.h>.
240
241 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
242
243 * Version 22.1 released.
244
245 2007-05-30 Ulrich Mueller <ulm@gentoo.org> (tiny change)
246
247 * XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc.
248
249 2007-02-27 Glenn Morris <rgm@gnu.org>
250
251 * Imakefile: Remove unused file with no explicit legal info.
252 * Makefile.in (distclean): Remove Makefile.
253
254 2007-02-25 Glenn Morris <rgm@gnu.org>
255
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.
259
260 2004-12-27 Jan Djärv <jan.h.d@swipnet.se>
261
262 * Activate.c (XMenuActivate): Return XM_NO_SELECT if Escape or C-g
263 was pressed.
264
265 2004-11-12 Jan Djärv <jan.h.d@swipnet.se>
266
267 * XMenu.h (XMenuActivateSetWaitFunction): New function.
268
269 * Activate.c (XMenuActivateSetWaitFunction): New function.
270 (XMenuActivate): Call wait_func if set, before XNextEvent.
271
272 2002-04-22 Jan Djärv <jan.h.d@swipnet.se>
273
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.
279
280 2001-10-20 Gerd Moellmann <gerd@gnu.org>
281
282 * (Version 21.1 released.)
283
284 2001-10-05 Gerd Moellmann <gerd@gnu.org>
285
286 * Branch for 21.1.
287
288 2000-07-21 Eli Zaretskii <eliz@is.elta.co.il>
289
290 * Activate.c (XMenuActivate): Call help callback with two more
291 arguments: the pane number and selection number.
292
293 2000-01-27 Gerd Moellmann <gerd@gnu.org>
294
295 * Activate.c (XMenuActivate): Add parameter HELP_CALLBACK.
296 Call help callback.
297
298 * Post.c (XMenuPost): Pass null help callback to XMenuActivate.
299
300 * AddSel.c (XMenuAddSelection): Add parameter HELP.
301
302 * XMenu.h (XmSelect): Add member `help_string'.
303
304 1999-07-12 Richard Stallman <rms@gnu.org>
305
306 * Version 20.4 released.
307
308 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
309
310 * Version 20.3 released.
311
312 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
313
314 * Version 20.2 released.
315
316 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
317
318 * Version 20.1 released.
319
320 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
321
322 * Version 19.33 released.
323
324 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
325
326 * Version 19.32 released.
327
328 1996-06-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
329
330 * Internal.c (_XMRefreshSelection): Check for type SEPARATOR.
331 * InsSel.c (XMenuInsertSelection): Use SEPARATOR if nec.
332 * AddSel.c (XMenuAddSelection): Use SEPARATOR if nec.
333
334 * XMenu.h: New alternative SEPARATOR.
335
336 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
337
338 * Version 19.31 released.
339
340 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
341
342 * Version 19.30 released.
343
344 1995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
345
346 * Makefile.in (ALL_CFLAGS): Add some -I options.
347
348 * Activate.c, AddPane.c, AddSel.c, Create.c, InsPane.c, InsSel.c:
349 * Internal.c, XCrAssoc.c, XMakeAssoc.c: Include config.h.
350
351 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
352
353 * Version 19.29 released.
354
355 1995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
356
357 * Makefile.in (maintainer-clean): Rename from realclean.
358
359 1994-10-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
360
361 * Makefile.in (ALL_CFLAGS): Reorder the switches more rationally.
362
363 1994-10-24 Jim Wilson (wilson@chestnut.cygnus.com)
364
365 * Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_MACHINE.
366
367 1994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
368
369 * Version 19.27 released.
370
371 1994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
372
373 * Version 19.26 released.
374
375 1994-07-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
376
377 * Error.c (XMenuError): Make `message' static.
378
379 1994-06-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
380
381 * Create.c (XAllocDisplayColor): New function.
382 Use it throughout in place of XAllocNamedColor.
383
384 1994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
385
386 * Version 19.25 released.
387
388 1994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
389
390 * Version 19.24 released.
391
392 1994-05-17 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
393
394 * Create.c (XMenuCreate): Declare `data' as char*.
395
396 1994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
397
398 * Version 19.23 released.
399
400 1994-04-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
401
402 * Create.c (XMenuCreate): Declare `data' as unsigned char*.
403
404 1994-01-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
405
406 * XMakeAssoc.c (XMakeAssoc): Use xmalloc.
407 (_XIOErrorFunction): Decl deleted.
408
409 1993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
410
411 * Version 19.22 released.
412
413 1993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
414
415 * Activate.c (XMenuActivate):
416 Call XSetWindowBackground and _XMRefreshPane.
417
418 1993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
419
420 * Version 19.21 released.
421
422 1993-11-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
423
424 * Makefile.in (libXMenu11.a): Tell make not to worry if ranlib fails.
425 Tell user too, in case make doesn't pay attention.
426
427 1993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
428
429 * Version 19.20 released.
430
431 1993-10-25 Brian J. Fox (bfox@albert.gnu.ai.mit.edu)
432
433 * Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_SYSTEM.
434
435 1993-09-27 Brian J. Fox (bfox@valhalla)
436
437 * Makefile.in (CPP, LN_S, C_SWITCH_X_SITE, CC, CFLAGS):
438 Allow `configure' to supply the values for these variables.
439
440 1993-09-26 Brian J. Fox (bfox@ai.mit.edu)
441
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'.
445
446 1993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
447
448 * Version 19.19 released.
449
450 1993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
451
452 * Version 19.18 released.
453
454 1993-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
455
456 * Internal.c (_XMWinQueInit): Use explicit loop, not bzero.
457
458 1993-07-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
459
460 * Makefile (ALL_CFLAGS): Use all 6 C_SWITCH_... vars.
461
462 Among them, put the ..._SITE vars last.
463
464 1993-07-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
465
466 * Version 19.17 released.
467
468 1993-07-07 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
469
470 * Makefile.in: Write out the dependencies for the object files;
471 otherwise, VPATH won't work.
472
473 * Makefile.in: Re-arrange, to put `all' target at the top.
474
475 1993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
476
477 * Version 19.16 released.
478
479 1993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
480
481 * version 19.15 released.
482
483 1993-06-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
484
485 * Makefile.in (ALL_CFLAGS): Always #define EMACS_BITMAP_FILES.
486 This should make it work under any circumstances.
487
488 * Makefile.in (mostlyclean): Use rm -f.
489
490 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
491
492 * Version 19.14 released.
493
494 1993-06-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
495
496 * Makefile.in (ALL_CFLAGS): Include C_SWITCH_MACHINE, and CPPFLAGS.
497 Put CFLAGS last.
498
499 1993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
500
501 Bring mumbleclean targets into conformance with GNU coding standards.
502 * Makefile.in (mostlyclean, realclean): New targets.
503
504 1993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
505
506 * Version 19.13 released.
507
508 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
509
510 * Version 19.10 released.
511
512 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
513
514 * Create.c: Handle EMACS_BITMAP_FILES.
515 Use new names of renamed bitmap files.
516
517 1993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
518
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.
523
524 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
525
526 * Makefile.in (.c.o): Use $< instead of ${srcdir}/$*.c; the latter
527 only works with GNU Make.
528
529 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
530
531 * Create.c (XMenuCreate): Use classes PaneFont and SelectionFont.
532
533 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
534
535 * Version 19.9 released.
536
537 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
538
539 * Create.c (XMenuCreate): Use x_get_resource_string, not XGetDefault.
540
541 1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
542
543 * Version 19.8 released.
544
545 1993-05-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
546
547 * Makefile.in (C_SWITCH_X_SITE): New variable, so that the
548 configuration process can correctly implement the --x-includes
549 option.
550
551 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
552
553 * Create.c (XMenuCreate): Initialize the menu's pixmaps to None,
554 not NULL.
555
556 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
557
558 * Version 19.7 released.
559
560 1993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
561
562 * Makefile.in: Renamed from Makefile, so that the top-level
563 makefile can edit it.
564
565 1993-04-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
566
567 * XLookAssoc.c, XMakeAssoc.c: VMS needs <X11/Xresource.h>, not
568 <X11/Xos.h>.
569
570 * XCrAssoc.c: #include <errno.h>, not "errno.h".
571 (XCreateAssocTable): Doc fix.
572
573 1993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
574
575 * Makefile (.c.o): Include C_SWITCH_SITE and C_SWITCH_SYSTEM in
576 the options to the C compiler.
577
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>.
587
588 1993-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
589
590 * Makefile (.c.o): Don't rm the .o files.
591
592 1993-03-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
593
594 * Activate.c (XMenuActivate): If `active' field is negative,
595 don't allow selecting a string.
596
597 1993-03-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
598
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.
602
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.
608
609 * Imakefile: Include XCrAssoc.c, XDelAssoc.c, XDestAssoc.c,
610 XLookAssoc.c, and XMakeAssoc.c in SRCS. Similarly for OBJS.
611
612 * XMenuInt.h: #include <stdio.h> before <X11/Xlib.h>, to avoid
613 warnings about redefining NULL.
614
615 * XMakeAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c,
616 XCrAssoc.c: #include X11/Xlib.h instead of X11/Xlibint.h.
617
618 * XMakeAssoc.c, XLookAssoc.c, XCrAssoc.c: If NULL isn't defined by
619 any of the `.h' files, define it.
620
621 * XMakeAssoc.c, XCrAssoc.c: #include <errno.h>.
622 Add an extern declaration for errno.
623
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.
628
629 * XDestAssoc.c (XDestroyAssocTable): Use free instead of Xfree.
630 * XDelAssoc.c (XDeleteAssoc): Same.
631
632 1992-10-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
633
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.
638
639 1992-10-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
640
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.
646
647 1992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
648
649 * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
650 Specify dir X11/ when including Xlibint.h.
651
652 1992-09-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
653
654 * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
655 New files.
656
657 * Makefile (SRCS, OBJS): Compile those files.
658
659 1992-01-31 Richard Stallman (rms@mole.gnu.ai.mit.edu)
660
661 * Makefile (clean): Delete object files and library.
662 (distclean): New target.
663
664 1992-01-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
665
666 * Makefile (libXMenu11.a): Put `-' on ranlib line.
667
668 1992-01-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
669
670 * Makefile (EXTRA): New variable.
671 (libXMenu11.a): Use that.
672
673 * insque.c: New file.
674
675 1992-01-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
676
677 * Makefile (CC): Assignment commented out.
678
679 1991-11-16 Noah Friedman (friedman@nutrimat)
680
681 * copyright.h: New file (copied from X11R4 distribution)
682 * All files: Replaced occurrences of #include <X11/copyright.h>
683 with #include "copyright.h".
684
685 1991-10-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
686
687 * XMenu.h (enum _xmmode): Remove spurious comma.
688
689 * X10.h: New file.
690 * XMenu.h, XMenuInt.h: Include X10.h from this dir.
691
692 1990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
693
694 * XMenu.h (struct _xmenu): Use unsigned long for colors.
695
696 1990-11-12 Richard Stallman (rms@mole.ai.mit.edu)
697
698 * Internal.c: Declare argument `display' in some functions.
699
700 1989-08-09 Joseph Arceneaux (jla@spiff)
701
702 * Makefile: Removed all the unnecessary X stuff.
703
704 ;; Local Variables:
705 ;; coding: utf-8
706 ;; End:
707
708 Copyright (C) 1993-1999, 2001-2015 Free Software Foundation, Inc.
709
710 This file is part of GNU Emacs.
711
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.
716
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.
721
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/>.