]> 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 * Version 24.4 released.
4
5 2013-10-24 Glenn Morris <rgm@gnu.org>
6
7 * Makefile.in (abs_top_srcdir): New, set by configure.
8
9 2013-09-04 Paul Eggert <eggert@cs.ucla.edu>
10
11 Makefile improvements.
12 * Makefile.in (all, tags): Don't use double-colon rules, as they
13 are not portable according to POSIX. Mark as phony.
14
15 2012-12-04 Paul Eggert <eggert@cs.ucla.edu>
16
17 Include <config.h> uniformly in oldXMenu sources.
18 * Activate.c, AddPane.c, AddSel.c, ChgPane.c, ChgSel.c, Create.c:
19 * InsPane.c, InsSel.c, Internal.c, XMakeAssoc.c:
20 Do not include <config.h>, since XMenuInt.h does that now.
21 * XLookAssoc.c, XMenuInt.h: Include <config.h>.
22 This avoids a build failure when configuring on Fedora 17
23 --with-x-toolkit=no, reported by Dmitry Andropov in
24 <http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00078.html>.
25
26 2012-10-06 Ulrich Müller <ulm@gentoo.org>
27
28 * Makefile.in (AR, ARFLAGS): Get values from configure.
29
30 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
31
32 * Makefile.in (ALL_CFLAGS): Add -I../lib -I${srcdir}/../lib.
33 This is needed for hosts that lack <alloca.h>, when Emacs is
34 configured --with-x-toolkit=no. Problem reported by Herbert
35 J. Skuhra for FreeBSD.
36
37 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
38
39 configure: new option --enable-gcc-warnings (Bug#11207)
40 * Makefile.in (C_WARNINGS_SWITCH): Remove.
41 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
42 (ALL_CFLAGS): Use new macros rather than old.
43
44 2012-04-11 Glenn Morris <rgm@gnu.org>
45
46 * Makefile.in (C_SWITCH_X_SYSTEM): Remove.
47 (ALL_CFLAGS): Remove C_SWITCH_X_SYSTEM.
48
49 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
50
51 Static checks with GCC 4.6.0 and non-default toolkits.
52
53 Modernize to C89, for better static checking.
54 * Activate.c (XMenuActivate): Callback's first arg is readonly.
55 * AddPane.c (XMenuAddPane): Label is readonly. Rename local
56 to avoid shadowing.
57 * AddSel.c (XMenuAddSelection): Help arg is readonly. Rename local.
58 * Create.c (atoi, atof): Remove decls; include <stdlib.h>.
59 (MAX_INACT_PNUM, TILE_BUF_SIZE): Remove; unused.
60 (x_get_resource_string): Args are readonly.
61 (XAllocDisplayColor): colorName is readonly.
62 (XMenuCreate): def_env is readonly. Remove unused locals. Avoid
63 "else;".
64 * Destroy.c (XMenuDestroy): Return void.
65 * Error.c (XMenuError): Remove const pointer.
66 * EvHand.c (XMenuEventHandler): Return void.
67 * FindPane.c, FindSel.c: Include <string.h>.
68 * InsPane.c (XMenuInsertPane): Rename local to avoid shadowing.
69 * InsSel.c (XMenuInsertSelection): Likewise.
70 * Internal.c (toggle_color, BUFFER_SIZE): Remove; unused.
71 (_XMErrorList): Now const.
72 (_XMWinQueInit, _XMRecomputeGlobals, _XMTransToOrigin, _XMRefreshPane):
73 (_XMRefreshSelection): Return void.
74 (_XMWinQueFlush, _XMRefreshSelection): Rename locals to avoid
75 shadowing.
76 (_XMWinQueFlush): Use stack, not heap. Don't use uninitialized var.
77 * SetAEQ.c (XMenuSetAEQ): Now returns void.
78 * SetFrz.c (XMenuSetFreeze): Likewise.
79 * X10.h (XAssoc): Use void * for generic pointer.
80 * XDelAssoc.c: Include XMenuInt.h rather than duplicating part of it.
81 * XDestAssoc.c, XMakeAssoc.c: Likewise.
82 * XDestAssoc.c (XDestroyAssocTable): Return void.
83 * XMakeAssoc.c (XMakeAssoc): Use void * for generic pointer.
84 * XMenu.h, XMenuInt.h: Adjust to signature changes. Use const
85 for pointers to readonly storage.
86 * insque.c: Include XMenuInt.h, to check our own signature.
87 (emacs_insque, emacs_remque): Use void * for generic pointers.
88
89 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
90
91 * Version 23.3 released.
92
93 2010-11-09 Elias Pipping <pipping.elias@googlemail.com> (tiny change)
94
95 Make Emacs compile with clang (bug#7309).
96 * XMakeAssoc.c (XMakeAssoc):
97 * XDelAssoc.c (XDeleteAssoc): Declare the return type.
98
99 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
100
101 * XMenu.h: Include <stdlib.h>.
102
103 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
104
105 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS): Set from
106 substitution.
107 (ALL_CFLAGS): Add ${C_WARNINGS_SWITCH} and ${PROFILING_CFLAGS}.
108
109 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
110
111 * Activate.c: Convert function definitions to standard C.
112 * AddPane.c:
113 * AddSel.c:
114 * ChgPane.c:
115 * ChgSel.c:
116 * Create.c:
117 * DelPane.c:
118 * DelSel.c:
119 * Destroy.c:
120 * Error.c:
121 * EvHand.c:
122 * FindPane.c:
123 * FindSel.c:
124 * InsPane.c:
125 * InsSel.c:
126 * Internal.c:
127 * Locate.c:
128 * Post.c:
129 * Recomp.c:
130 * SetAEQ.c:
131 * SetFrz.c:
132 * SetPane.c:
133 * SetSel.c:
134 * X10.h:
135 * XCrAssoc.c:
136 * XDelAssoc.c:
137 * XDestAssoc.c:
138 * XLookAssoc.c:
139 * XMakeAssoc.c:
140 * XMenu.h:
141 * XMenuInt.h:
142 * insque.c: Likewise.
143
144 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
145
146 * Version 23.2 released.
147
148 2010-05-06 Glenn Morris <rgm@gnu.org>
149
150 * Makefile.in (RANLIB): Let configure set it.
151 (libXMenu11.a): Configure sets RANLIB = : on systems without it.
152
153 * Makefile.in (CPP, LN_S, AS, LD, MV, LS, LINTOPTS, LINTLIBFLAG, MAKE)
154 (STD_DEFINES, CDEBUGFLAGS, RM_CMD): Remove unused variables.
155
156 2010-05-04 Glenn Morris <rgm@gnu.org>
157
158 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE):
159 Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
160 @c_switch_system@, @c_switch_machine@.
161
162 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
163
164 * Makefile.in (C_SWITCH_X_SYSTEM): Define using autoconf.
165
166 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
167
168 * Makefile.in (ALL_CFLAGS): Remove C_SWITCH_X_MACHINE, unused.
169
170 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
171
172 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
173 (C_SWITCH_X_SITE): Define using autoconf.
174
175 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
176
177 * Branch for 23.2.
178
179 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
180
181 * Branch for 23.1.
182
183 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
184
185 * descrip.mms:
186 * compile.com: Remove file.
187 * Create.c: Remove VMS support.
188
189 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
190
191 * Makefile.in (ALL_CFLAGS): Remove reference to C_SWITCH_SITE.
192
193 2007-07-25 Glenn Morris <rgm@gnu.org>
194
195 * Relicense all FSF files to GPLv3 or later.
196
197 2007-06-04 Ulrich Mueller <ulm@gentoo.org> (tiny change)
198
199 * ChgPane.c, ChgSel.c: Quiet --with-x-toolkit=no
200 compilation warnings: #include <config.h>.
201
202 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
203
204 * Version 22.1 released.
205
206 2007-05-30 Ulrich Mueller <ulm@gentoo.org> (tiny change)
207
208 * XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc.
209
210 2007-02-27 Glenn Morris <rgm@gnu.org>
211
212 * Imakefile: Remove unused file with no explicit legal info.
213 * Makefile.in (distclean): Remove Makefile.
214
215 2007-02-25 Glenn Morris <rgm@gnu.org>
216
217 * XCrAssoc.c, XDelAssoc.c, XDestAssoc.c, XLookAssoc.c:
218 * XMakeAssoc.c: Remove license text in favor of including
219 copyright.h, as was done in original X11 source.
220
221 2004-12-27 Jan Djärv <jan.h.d@swipnet.se>
222
223 * Activate.c (XMenuActivate): Return XM_NO_SELECT if Escape or C-g
224 was pressed.
225
226 2004-11-12 Jan Djärv <jan.h.d@swipnet.se>
227
228 * XMenu.h (XMenuActivateSetWaitFunction): New function.
229
230 * Activate.c (XMenuActivateSetWaitFunction): New function.
231 (XMenuActivate): Call wait_func if set, before XNextEvent.
232
233 2002-04-22 Jan Djärv <jan.h.d@swipnet.se>
234
235 * Activate.c: Add calls to GrabKeyboard to remove strange
236 interactions with window managers that steal keypresses.
237 Call ungrab_all instead of XtUngrabPointer.
238 (XMenuActivate): Add call to XGrabKeyboard.
239 (XMenuActivate): Add call to XUngrabKeyboard.
240
241 2001-10-20 Gerd Moellmann <gerd@gnu.org>
242
243 * (Version 21.1 released.)
244
245 2001-10-05 Gerd Moellmann <gerd@gnu.org>
246
247 * Branch for 21.1.
248
249 2000-07-21 Eli Zaretskii <eliz@is.elta.co.il>
250
251 * Activate.c (XMenuActivate): Call help callback with two more
252 arguments: the pane number and selection number.
253
254 2000-01-27 Gerd Moellmann <gerd@gnu.org>
255
256 * Activate.c (XMenuActivate): Add parameter HELP_CALLBACK.
257 Call help callback.
258
259 * Post.c (XMenuPost): Pass null help callback to XMenuActivate.
260
261 * AddSel.c (XMenuAddSelection): Add parameter HELP.
262
263 * XMenu.h (XmSelect): Add member `help_string'.
264
265 1999-07-12 Richard Stallman <rms@gnu.org>
266
267 * Version 20.4 released.
268
269 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
270
271 * Version 20.3 released.
272
273 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
274
275 * Version 20.2 released.
276
277 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
278
279 * Version 20.1 released.
280
281 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
282
283 * Version 19.33 released.
284
285 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
286
287 * Version 19.32 released.
288
289 1996-06-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
290
291 * Internal.c (_XMRefreshSelection): Check for type SEPARATOR.
292 * InsSel.c (XMenuInsertSelection): Use SEPARATOR if nec.
293 * AddSel.c (XMenuAddSelection): Use SEPARATOR if nec.
294
295 * XMenu.h: New alternative SEPARATOR.
296
297 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
298
299 * Version 19.31 released.
300
301 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
302
303 * Version 19.30 released.
304
305 1995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
306
307 * Makefile.in (ALL_CFLAGS): Add some -I options.
308
309 * Activate.c, AddPane.c, AddSel.c, Create.c, InsPane.c, InsSel.c:
310 * Internal.c, XCrAssoc.c, XMakeAssoc.c: Include config.h.
311
312 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
313
314 * Version 19.29 released.
315
316 1995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
317
318 * Makefile.in (maintainer-clean): Renamed from realclean.
319
320 1994-10-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
321
322 * Makefile.in (ALL_CFLAGS): Reorder the switches more rationally.
323
324 1994-10-24 Jim Wilson (wilson@chestnut.cygnus.com)
325
326 * Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_MACHINE.
327
328 1994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
329
330 * Version 19.27 released.
331
332 1994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
333
334 * Version 19.26 released.
335
336 1994-07-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
337
338 * Error.c (XMenuError): Make `message' static.
339
340 1994-06-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
341
342 * Create.c (XAllocDisplayColor): New function.
343 Use it throughout in place of XAllocNamedColor.
344
345 1994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
346
347 * Version 19.25 released.
348
349 1994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
350
351 * Version 19.24 released.
352
353 1994-05-17 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
354
355 * Create.c (XMenuCreate): Declare `data' as char*.
356
357 1994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
358
359 * Version 19.23 released.
360
361 1994-04-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362
363 * Create.c (XMenuCreate): Declare `data' as unsigned char*.
364
365 1994-01-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
366
367 * XMakeAssoc.c (XMakeAssoc): Use xmalloc.
368 (_XIOErrorFunction): Decl deleted.
369
370 1993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
371
372 * Version 19.22 released.
373
374 1993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
375
376 * Activate.c (XMenuActivate):
377 Call XSetWindowBackground and _XMRefreshPane.
378
379 1993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
380
381 * Version 19.21 released.
382
383 1993-11-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
384
385 * Makefile.in (libXMenu11.a): Tell make not to worry if ranlib fails.
386 Tell user too, in case make doesn't pay attention.
387
388 1993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
389
390 * Version 19.20 released.
391
392 1993-10-25 Brian J. Fox (bfox@albert.gnu.ai.mit.edu)
393
394 * Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_SYSTEM.
395
396 1993-09-27 Brian J. Fox (bfox@valhalla)
397
398 * Makefile.in (CPP, LN_S, C_SWITCH_X_SITE, CC, CFLAGS): Allow
399 `configure' to supply the values for these variables.
400
401 1993-09-26 Brian J. Fox (bfox@ai.mit.edu)
402
403 * Makefile.in (VPATH, srcdir): Now that `configure' creates the
404 Makefiles, do not append the current directory to the value of
405 `srcdir' or `VPATH'.
406
407 1993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
408
409 * Version 19.19 released.
410
411 1993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
412
413 * Version 19.18 released.
414
415 1993-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
416
417 * Internal.c (_XMWinQueInit): Use explicit loop, not bzero.
418
419 1993-07-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
420
421 * Makefile (ALL_CFLAGS): Use all 6 C_SWITCH_... vars.
422
423 Among them, put the ..._SITE vars last.
424
425 1993-07-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
426
427 * Version 19.17 released.
428
429 1993-07-07 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
430
431 * Makefile.in: Write out the dependencies for the object files;
432 otherwise, VPATH won't work.
433
434 * Makefile.in: Re-arrange, to put `all' target at the top.
435
436 1993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
437
438 * Version 19.16 released.
439
440 1993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
441
442 * version 19.15 released.
443
444 1993-06-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
445
446 * Makefile.in (ALL_CFLAGS): Always #define EMACS_BITMAP_FILES.
447 This should make it work under any circumstances.
448
449 * Makefile.in (mostlyclean): Use rm -f.
450
451 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
452
453 * Version 19.14 released.
454
455 1993-06-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
456
457 * Makefile.in (ALL_CFLAGS): Include C_SWITCH_MACHINE, and CPPFLAGS.
458 Put CFLAGS last.
459
460 1993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
461
462 Bring mumbleclean targets into conformance with GNU coding standards.
463 * Makefile.in (mostlyclean, realclean): New targets.
464
465 1993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
466
467 * Version 19.13 released.
468
469 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
470
471 * Version 19.10 released.
472
473 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
474
475 * Create.c: Handle EMACS_BITMAP_FILES.
476 Use new names of renamed bitmap files.
477
478 1993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
479
480 * AddPane.c, AddSel.c, DelPane.c, DelSel.c, InsPane.c, InsSel.c,
481 XDelAssoc.c, XMakeAssoc.c, XMenu.h, insque.c: Changed all uses of
482 insque and remque to emacs_insque and emacs_remque, so we can
483 safely include insque.c in the library on all systems.
484
485 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
486
487 * Makefile.in (.c.o): Use $< instead of ${srcdir}/$*.c; the latter
488 only works with GNU Make.
489
490 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
491
492 * Create.c (XMenuCreate): Use classes PaneFont and SelectionFont.
493
494 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
495
496 * Version 19.9 released.
497
498 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
499
500 * Create.c (XMenuCreate): Use x_get_resource_string, not XGetDefault.
501
502 1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
503
504 * Version 19.8 released.
505
506 1993-05-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
507
508 * Makefile.in (C_SWITCH_X_SITE): New variable, so that the
509 configuration process can correctly implement the --x-includes
510 option.
511
512 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
513
514 * Create.c (XMenuCreate): Initialize the menu's pixmaps to None,
515 not NULL.
516
517 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
518
519 * Version 19.7 released.
520
521 1993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
522
523 * Makefile.in: Renamed from Makefile, so that the top-level
524 makefile can edit it.
525
526 1993-04-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
527
528 * XLookAssoc.c, XMakeAssoc.c: VMS needs <X11/Xresource.h>, not
529 <X11/Xos.h>.
530
531 * XCrAssoc.c: #include <errno.h>, not "errno.h".
532 (XCreateAssocTable): Doc fix.
533
534 1993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
535
536 * Makefile (.c.o): Include C_SWITCH_SITE and C_SWITCH_SYSTEM in
537 the options to the C compiler.
538
539 * compile.com, descrip.mms: New files for VMS from Richard
540 Levitte.
541 * XCrAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c: Use <angle
542 brackets> around the names of the X Windows #include files; VMS
543 needs this.
544 * XLookAssoc.c, XMakeAssoc.c: #include <X11/Xos.h>. VMS needs
545 this.
546 * Create.c: On VMS, we have to look for the bitmap files in
547 `./src/bitmaps', not <X11/bitmaps>.
548
549 1993-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
550
551 * Makefile (.c.o): Don't rm the .o files.
552
553 1993-03-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
554
555 * Activate.c (XMenuActivate): If `active' field is negative,
556 don't allow selecting a string.
557
558 1993-03-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
559
560 * Create.c (XMenuCreate): New variable `root', holding the
561 display's default root window, so we don't have to write out
562 "RootWindow (display, DefaultScreen (display))" a jillion times.
563
564 * Create.c (XMenuCreate): Don't assume that all the
565 <X11/bitmaps/foo> patterns are 16x16. Instead of building a
566 bitmap and then converting it to a pixmap of the appropriate
567 depth if necessary, build a pixmap of the appropriate depth
568 directly, using XCreatePixmapFromBitmapData.
569
570 * Imakefile: Include XCrAssoc.c, XDelAssoc.c, XDestAssoc.c,
571 XLookAssoc.c, and XMakeAssoc.c in SRCS. Similarly for OBJS.
572
573 * XMenuInt.h: #include <stdio.h> before <X11/Xlib.h>, to avoid
574 warnings about redefining NULL.
575
576 * XMakeAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c,
577 XCrAssoc.c: #include X11/Xlib.h instead of X11/Xlibint.h.
578
579 * XMakeAssoc.c, XLookAssoc.c, XCrAssoc.c: If NULL isn't defined by
580 any of the `.h' files, define it.
581
582 * XMakeAssoc.c, XCrAssoc.c: #include <errno.h>.
583 Add an extern declaration for errno.
584
585 * XMakeAssoc.c: Add an extern declaration for _XIOErrorFunction.
586 (XMakeAssoc): Use malloc instead of Xmalloc to allocate new
587 parts of the assoc table.
588 * XCrAssoc.c (XCreateAssocTable): Same.
589
590 * XDestAssoc.c (XDestroyAssocTable): Use free instead of Xfree.
591 * XDelAssoc.c (XDeleteAssoc): Same.
592
593 1992-10-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
594
595 * XMakeAssoc.c (XMakeAssoc): Use malloc, not Xmalloc.
596 * XCrAssoc.c (XCreateAssocTable): Use malloc and calloc directly.
597 * XDelAssoc.c (XDeleteAssoc): Use free, not Xfree.
598 * XDestAssoc.c (XDestroyAssocTable): Likewise.
599
600 1992-10-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
601
602 * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
603 Use Xlib.h, not Xlibint.h.
604 * XLookAssoc.c, XMakeAssoc.c, XCrAssoc.c (NULL): Defined.
605 * XMakeAssoc.c, XCrAssoc.c: Include errno.h. Declare errno.
606 * XMakeAssoc.c (_XIOErrorFunction): Declared.
607
608 1992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
609
610 * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
611 Specify dir X11/ when including Xlibint.h.
612
613 1992-09-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
614
615 * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
616 New files.
617
618 * Makefile (SRCS, OBJS): Compile those files.
619
620 1992-01-31 Richard Stallman (rms@mole.gnu.ai.mit.edu)
621
622 * Makefile (clean): Delete object files and library.
623 (distclean): New target.
624
625 1992-01-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
626
627 * Makefile (libXMenu11.a): Put `-' on ranlib line.
628
629 1992-01-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
630
631 * Makefile (EXTRA): New variable.
632 (libXMenu11.a): Use that.
633
634 * insque.c: New file.
635
636 1992-01-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
637
638 * Makefile (CC): Assignment commented out.
639
640 1991-11-16 Noah Friedman (friedman@nutrimat)
641
642 * copyright.h: New file (copied from X11R4 distribution)
643 * All files: Replaced occurrences of #include <X11/copyright.h>
644 with #include "copyright.h".
645
646 1991-10-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
647
648 * XMenu.h (enum _xmmode): Remove spurious comma.
649
650 * X10.h: New file.
651 * XMenu.h, XMenuInt.h: Include X10.h from this dir.
652
653 1990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
654
655 * XMenu.h (struct _xmenu): Use unsigned long for colors.
656
657 1990-11-12 Richard Stallman (rms@mole.ai.mit.edu)
658
659 * Internal.c: Declare argument `display' in some functions.
660
661 1989-08-09 Joseph Arceneaux (jla@spiff)
662
663 * Makefile: Removed all the unnecessary X stuff.
664
665 ;; Local Variables:
666 ;; coding: utf-8
667 ;; End:
668
669 Copyright (C) 1993-1999, 2001-2015 Free Software Foundation, Inc.
670
671 This file is part of GNU Emacs.
672
673 GNU Emacs is free software: you can redistribute it and/or modify
674 it under the terms of the GNU General Public License as published by
675 the Free Software Foundation, either version 3 of the License, or
676 (at your option) any later version.
677
678 GNU Emacs is distributed in the hope that it will be useful,
679 but WITHOUT ANY WARRANTY; without even the implied warranty of
680 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
681 GNU General Public License for more details.
682
683 You should have received a copy of the GNU General Public License
684 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.