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