ChangeLog 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. 2012-08-24 Chong Yidong <cyd@gnu.org>
  2. * Version 24.2 released.
  3. 2012-06-01 Chong Yidong <cyd@gnu.org>
  4. * Version 24.1 released.
  5. 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
  6. Static checks with GCC 4.6.0 and non-default toolkits.
  7. Modernize to C89, for better static checking.
  8. * Activate.c (XMenuActivate): Callback's first arg is readonly.
  9. * AddPane.c (XMenuAddPane): Label is readonly. Rename local
  10. to avoid shadowing.
  11. * AddSel.c (XMenuAddSelection): Help arg is readonly. Rename local.
  12. * Create.c (atoi, atof): Remove decls; include <stdlib.h>.
  13. (MAX_INACT_PNUM, TILE_BUF_SIZE): Remove; unused.
  14. (x_get_resource_string): Args are readonly.
  15. (XAllocDisplayColor): colorName is readonly.
  16. (XMenuCreate): def_env is readonly. Remove unused locals. Avoid
  17. "else;".
  18. * Destroy.c (XMenuDestroy): Return void.
  19. * Error.c (XMenuError): Remove const pointer.
  20. * EvHand.c (XMenuEventHandler): Return void.
  21. * FindPane.c, FindSel.c: Include <string.h>.
  22. * InsPane.c (XMenuInsertPane): Rename local to avoid shadowing.
  23. * InsSel.c (XMenuInsertSelection): Likewise.
  24. * Internal.c (toggle_color, BUFFER_SIZE): Remove; unused.
  25. (_XMErrorList): Now const.
  26. (_XMWinQueInit, _XMRecomputeGlobals, _XMTransToOrigin, _XMRefreshPane):
  27. (_XMRefreshSelection): Return void.
  28. (_XMWinQueFlush, _XMRefreshSelection): Rename locals to avoid
  29. shadowing.
  30. (_XMWinQueFlush): Use stack, not heap. Don't use uninitialized var.
  31. * SetAEQ.c (XMenuSetAEQ): Now returns void.
  32. * SetFrz.c (XMenuSetFreeze): Likewise.
  33. * X10.h (XAssoc): Use void * for generic pointer.
  34. * XDelAssoc.c: Include XMenuInt.h rather than duplicating part of it.
  35. * XDestAssoc.c, XMakeAssoc.c: Likewise.
  36. * XDestAssoc.c (XDestroyAssocTable): Return void.
  37. * XMakeAssoc.c (XMakeAssoc): Use void * for generic pointer.
  38. * XMenu.h, XMenuInt.h: Adjust to signature changes. Use const
  39. for pointers to readonly storage.
  40. * insque.c: Include XMenuInt.h, to check our own signature.
  41. (emacs_insque, emacs_remque): Use void * for generic pointers.
  42. 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
  43. * Version 23.3 released.
  44. 2010-11-09 Elias Pipping <pipping.elias@googlemail.com> (tiny change)
  45. Make Emacs compile with clang (bug#7309).
  46. * XMakeAssoc.c (XMakeAssoc):
  47. * XDelAssoc.c (XDeleteAssoc): Declare the return type.
  48. 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
  49. * XMenu.h: Include <stdlib.h>.
  50. 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
  51. * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS): Set from
  52. substitution.
  53. (ALL_CFLAGS): Add ${C_WARNINGS_SWITCH} and ${PROFILING_CFLAGS}.
  54. 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
  55. * Activate.c: Convert function definitions to standard C.
  56. * AddPane.c:
  57. * AddSel.c:
  58. * ChgPane.c:
  59. * ChgSel.c:
  60. * Create.c:
  61. * DelPane.c:
  62. * DelSel.c:
  63. * Destroy.c:
  64. * Error.c:
  65. * EvHand.c:
  66. * FindPane.c:
  67. * FindSel.c:
  68. * InsPane.c:
  69. * InsSel.c:
  70. * Internal.c:
  71. * Locate.c:
  72. * Post.c:
  73. * Recomp.c:
  74. * SetAEQ.c:
  75. * SetFrz.c:
  76. * SetPane.c:
  77. * SetSel.c:
  78. * X10.h:
  79. * XCrAssoc.c:
  80. * XDelAssoc.c:
  81. * XDestAssoc.c:
  82. * XLookAssoc.c:
  83. * XMakeAssoc.c:
  84. * XMenu.h:
  85. * XMenuInt.h:
  86. * insque.c: Likewise.
  87. 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
  88. * Version 23.2 released.
  89. 2010-05-06 Glenn Morris <rgm@gnu.org>
  90. * Makefile.in (RANLIB): Let configure set it.
  91. (libXMenu11.a): Configure sets RANLIB = : on systems without it.
  92. * Makefile.in (CPP, LN_S, AS, LD, MV, LS, LINTOPTS, LINTLIBFLAG, MAKE)
  93. (STD_DEFINES, CDEBUGFLAGS, RM_CMD): Remove unused variables.
  94. 2010-05-04 Glenn Morris <rgm@gnu.org>
  95. * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE):
  96. Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
  97. @c_switch_system@, @c_switch_machine@.
  98. 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
  99. * Makefile.in (C_SWITCH_X_SYSTEM): Define using autoconf.
  100. 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
  101. * Makefile.in (ALL_CFLAGS): Remove C_SWITCH_X_MACHINE, unused.
  102. 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
  103. * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
  104. (C_SWITCH_X_SITE): Define using autoconf.
  105. 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
  106. * Branch for 23.2.
  107. 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
  108. * Branch for 23.1.
  109. 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
  110. * descrip.mms:
  111. * compile.com: Remove file.
  112. * Create.c: Remove VMS support.
  113. 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
  114. * Makefile.in (ALL_CFLAGS): Remove reference to C_SWITCH_SITE.
  115. 2007-07-25 Glenn Morris <rgm@gnu.org>
  116. * Relicense all FSF files to GPLv3 or later.
  117. 2007-06-04 Ulrich Mueller <ulm@gentoo.org> (tiny change)
  118. * ChgPane.c, ChgSel.c: Quiet --with-x-toolkit=no
  119. compilation warnings: #include <config.h>.
  120. 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
  121. * Version 22.1 released.
  122. 2007-05-30 Ulrich Mueller <ulm@gentoo.org> (tiny change)
  123. * XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc.
  124. 2007-02-27 Glenn Morris <rgm@gnu.org>
  125. * Imakefile: Remove unused file with no explicit legal info.
  126. * Makefile.in (distclean): Remove Makefile.
  127. 2007-02-25 Glenn Morris <rgm@gnu.org>
  128. * XCrAssoc.c, XDelAssoc.c, XDestAssoc.c, XLookAssoc.c:
  129. * XMakeAssoc.c: Remove license text in favor of including
  130. copyright.h, as was done in original X11 source.
  131. 2004-12-27 Jan Djärv <jan.h.d@swipnet.se>
  132. * Activate.c (XMenuActivate): Return XM_NO_SELECT if Escape or C-g
  133. was pressed.
  134. 2004-11-12 Jan Djärv <jan.h.d@swipnet.se>
  135. * XMenu.h (XMenuActivateSetWaitFunction): New function.
  136. * Activate.c (XMenuActivateSetWaitFunction): New function.
  137. (XMenuActivate): Call wait_func if set, before XNextEvent.
  138. 2002-04-22 Jan Djärv <jan.h.d@swipnet.se>
  139. * Activate.c: Add calls to GrabKeyboard to remove strange
  140. interactions with window managers that steal keypresses.
  141. Call ungrab_all instead of XtUngrabPointer.
  142. (XMenuActivate): Add call to XGrabKeyboard.
  143. (XMenuActivate): Add call to XUngrabKeyboard.
  144. 2001-10-20 Gerd Moellmann <gerd@gnu.org>
  145. * (Version 21.1 released.)
  146. 2001-10-05 Gerd Moellmann <gerd@gnu.org>
  147. * Branch for 21.1.
  148. 2000-07-21 Eli Zaretskii <eliz@is.elta.co.il>
  149. * Activate.c (XMenuActivate): Call help callback with two more
  150. arguments: the pane number and selection number.
  151. 2000-01-27 Gerd Moellmann <gerd@gnu.org>
  152. * Activate.c (XMenuActivate): Add parameter HELP_CALLBACK.
  153. Call help callback.
  154. * Post.c (XMenuPost): Pass null help callback to XMenuActivate.
  155. * AddSel.c (XMenuAddSelection): Add parameter HELP.
  156. * XMenu.h (XmSelect): Add member `help_string'.
  157. 1999-07-12 Richard Stallman <rms@gnu.org>
  158. * Version 20.4 released.
  159. 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
  160. * Version 20.3 released.
  161. 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  162. * Version 20.2 released.
  163. 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  164. * Version 20.1 released.
  165. 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  166. * Version 19.33 released.
  167. 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  168. * Version 19.32 released.
  169. 1996-06-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  170. * Internal.c (_XMRefreshSelection): Check for type SEPARATOR.
  171. * InsSel.c (XMenuInsertSelection): Use SEPARATOR if nec.
  172. * AddSel.c (XMenuAddSelection): Use SEPARATOR if nec.
  173. * XMenu.h: New alternative SEPARATOR.
  174. 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
  175. * Version 19.31 released.
  176. 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
  177. * Version 19.30 released.
  178. 1995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
  179. * Makefile.in (ALL_CFLAGS): Add some -I options.
  180. * Activate.c, AddPane.c, AddSel.c, Create.c, InsPane.c, InsSel.c:
  181. * Internal.c, XCrAssoc.c, XMakeAssoc.c: Include config.h.
  182. 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
  183. * Version 19.29 released.
  184. 1995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
  185. * Makefile.in (maintainer-clean): Renamed from realclean.
  186. 1994-10-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
  187. * Makefile.in (ALL_CFLAGS): Reorder the switches more rationally.
  188. 1994-10-24 Jim Wilson (wilson@chestnut.cygnus.com)
  189. * Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_MACHINE.
  190. 1994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
  191. * Version 19.27 released.
  192. 1994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
  193. * Version 19.26 released.
  194. 1994-07-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
  195. * Error.c (XMenuError): Make `message' static.
  196. 1994-06-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  197. * Create.c (XAllocDisplayColor): New function.
  198. Use it throughout in place of XAllocNamedColor.
  199. 1994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  200. * Version 19.25 released.
  201. 1994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  202. * Version 19.24 released.
  203. 1994-05-17 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
  204. * Create.c (XMenuCreate): Declare `data' as char*.
  205. 1994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  206. * Version 19.23 released.
  207. 1994-04-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  208. * Create.c (XMenuCreate): Declare `data' as unsigned char*.
  209. 1994-01-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  210. * XMakeAssoc.c (XMakeAssoc): Use xmalloc.
  211. (_XIOErrorFunction): Decl deleted.
  212. 1993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  213. * Version 19.22 released.
  214. 1993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  215. * Activate.c (XMenuActivate):
  216. Call XSetWindowBackground and _XMRefreshPane.
  217. 1993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  218. * Version 19.21 released.
  219. 1993-11-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  220. * Makefile.in (libXMenu11.a): Tell make not to worry if ranlib fails.
  221. Tell user too, in case make doesn't pay attention.
  222. 1993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  223. * Version 19.20 released.
  224. 1993-10-25 Brian J. Fox (bfox@albert.gnu.ai.mit.edu)
  225. * Makefile.in (ALL_CFLAGS): Add C_SWITCH_X_SYSTEM.
  226. 1993-09-27 Brian J. Fox (bfox@valhalla)
  227. * Makefile.in (CPP, LN_S, C_SWITCH_X_SITE, CC, CFLAGS): Allow
  228. `configure' to supply the values for these variables.
  229. 1993-09-26 Brian J. Fox (bfox@ai.mit.edu)
  230. * Makefile.in (VPATH, srcdir): Now that `configure' creates the
  231. Makefiles, do not append the current directory to the value of
  232. `srcdir' or `VPATH'.
  233. 1993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  234. * Version 19.19 released.
  235. 1993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  236. * Version 19.18 released.
  237. 1993-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  238. * Internal.c (_XMWinQueInit): Use explicit loop, not bzero.
  239. 1993-07-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  240. * Makefile (ALL_CFLAGS): Use all 6 C_SWITCH_... vars.
  241. Among them, put the ..._SITE vars last.
  242. 1993-07-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
  243. * Version 19.17 released.
  244. 1993-07-07 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  245. * Makefile.in: Write out the dependencies for the object files;
  246. otherwise, VPATH won't work.
  247. * Makefile.in: Re-arrange, to put `all' target at the top.
  248. 1993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  249. * Version 19.16 released.
  250. 1993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
  251. * version 19.15 released.
  252. 1993-06-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  253. * Makefile.in (ALL_CFLAGS): Always #define EMACS_BITMAP_FILES.
  254. This should make it work under any circumstances.
  255. * Makefile.in (mostlyclean): Use rm -f.
  256. 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
  257. * Version 19.14 released.
  258. 1993-06-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  259. * Makefile.in (ALL_CFLAGS): Include C_SWITCH_MACHINE, and CPPFLAGS.
  260. Put CFLAGS last.
  261. 1993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
  262. Bring mumbleclean targets into conformance with GNU coding standards.
  263. * Makefile.in (mostlyclean, realclean): New targets.
  264. 1993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
  265. * Version 19.13 released.
  266. 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  267. * Version 19.10 released.
  268. 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  269. * Create.c: Handle EMACS_BITMAP_FILES.
  270. Use new names of renamed bitmap files.
  271. 1993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  272. * AddPane.c, AddSel.c, DelPane.c, DelSel.c, InsPane.c, InsSel.c,
  273. XDelAssoc.c, XMakeAssoc.c, XMenu.h, insque.c: Changed all uses of
  274. insque and remque to emacs_insque and emacs_remque, so we can
  275. safely include insque.c in the library on all systems.
  276. 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  277. * Makefile.in (.c.o): Use $< instead of ${srcdir}/$*.c; the latter
  278. only works with GNU Make.
  279. 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  280. * Create.c (XMenuCreate): Use classes PaneFont and SelectionFont.
  281. 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  282. * Version 19.9 released.
  283. 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  284. * Create.c (XMenuCreate): Use x_get_resource_string, not XGetDefault.
  285. 1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
  286. * Version 19.8 released.
  287. 1993-05-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  288. * Makefile.in (C_SWITCH_X_SITE): New variable, so that the
  289. configuration process can correctly implement the --x-includes
  290. option.
  291. 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  292. * Create.c (XMenuCreate): Initialize the menu's pixmaps to None,
  293. not NULL.
  294. 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  295. * Version 19.7 released.
  296. 1993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  297. * Makefile.in: Renamed from Makefile, so that the top-level
  298. makefile can edit it.
  299. 1993-04-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
  300. * XLookAssoc.c, XMakeAssoc.c: VMS needs <X11/Xresource.h>, not
  301. <X11/Xos.h>.
  302. * XCrAssoc.c: #include <errno.h>, not "errno.h".
  303. (XCreateAssocTable): Doc fix.
  304. 1993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
  305. * Makefile (.c.o): Include C_SWITCH_SITE and C_SWITCH_SYSTEM in
  306. the options to the C compiler.
  307. * compile.com, descrip.mms: New files for VMS from Richard
  308. Levitte.
  309. * XCrAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c: Use <angle
  310. brackets> around the names of the X Windows #include files; VMS
  311. needs this.
  312. * XLookAssoc.c, XMakeAssoc.c: #include <X11/Xos.h>. VMS needs
  313. this.
  314. * Create.c: On VMS, we have to look for the bitmap files in
  315. `./src/bitmaps', not <X11/bitmaps>.
  316. 1993-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  317. * Makefile (.c.o): Don't rm the .o files.
  318. 1993-03-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  319. * Activate.c (XMenuActivate): If `active' field is negative,
  320. don't allow selecting a string.
  321. 1993-03-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
  322. * Create.c (XMenuCreate): New variable `root', holding the
  323. display's default root window, so we don't have to write out
  324. "RootWindow (display, DefaultScreen (display))" a jillion times.
  325. * Create.c (XMenuCreate): Don't assume that all the
  326. <X11/bitmaps/foo> patterns are 16x16. Instead of building a
  327. bitmap and then converting it to a pixmap of the appropriate
  328. depth if necessary, build a pixmap of the appropriate depth
  329. directly, using XCreatePixmapFromBitmapData.
  330. * Imakefile: Include XCrAssoc.c, XDelAssoc.c, XDestAssoc.c,
  331. XLookAssoc.c, and XMakeAssoc.c in SRCS. Similarly for OBJS.
  332. * XMenuInt.h: #include <stdio.h> before <X11/Xlib.h>, to avoid
  333. warnings about redefining NULL.
  334. * XMakeAssoc.c, XLookAssoc.c, XDestAssoc.c, XDelAssoc.c,
  335. XCrAssoc.c: #include X11/Xlib.h instead of X11/Xlibint.h.
  336. * XMakeAssoc.c, XLookAssoc.c, XCrAssoc.c: If NULL isn't defined by
  337. any of the `.h' files, define it.
  338. * XMakeAssoc.c, XCrAssoc.c: #include <errno.h>.
  339. Add an extern declaration for errno.
  340. * XMakeAssoc.c: Add an extern declaration for _XIOErrorFunction.
  341. (XMakeAssoc): Use malloc instead of Xmalloc to allocate new
  342. parts of the assoc table.
  343. * XCrAssoc.c (XCreateAssocTable): Same.
  344. * XDestAssoc.c (XDestroyAssocTable): Use free instead of Xfree.
  345. * XDelAssoc.c (XDeleteAssoc): Same.
  346. 1992-10-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  347. * XMakeAssoc.c (XMakeAssoc): Use malloc, not Xmalloc.
  348. * XCrAssoc.c (XCreateAssocTable): Use malloc and calloc directly.
  349. * XDelAssoc.c (XDeleteAssoc): Use free, not Xfree.
  350. * XDestAssoc.c (XDestroyAssocTable): Likewise.
  351. 1992-10-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  352. * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
  353. Use Xlib.h, not Xlibint.h.
  354. * XLookAssoc.c, XMakeAssoc.c, XCrAssoc.c (NULL): Defined.
  355. * XMakeAssoc.c, XCrAssoc.c: Include errno.h. Declare errno.
  356. * XMakeAssoc.c (_XIOErrorFunction): Declared.
  357. 1992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  358. * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
  359. Specify dir X11/ when including Xlibint.h.
  360. 1992-09-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  361. * XDelAssoc.c, XLookAssoc.c, XCrAssoc.c, XDestAssoc.c, XMakeAssoc.c:
  362. New files.
  363. * Makefile (SRCS, OBJS): Compile those files.
  364. 1992-01-31 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  365. * Makefile (clean): Delete object files and library.
  366. (distclean): New target.
  367. 1992-01-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  368. * Makefile (libXMenu11.a): Put `-' on ranlib line.
  369. 1992-01-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  370. * Makefile (EXTRA): New variable.
  371. (libXMenu11.a): Use that.
  372. * insque.c: New file.
  373. 1992-01-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  374. * Makefile (CC): Assignment commented out.
  375. 1991-11-16 Noah Friedman (friedman@nutrimat)
  376. * copyright.h: New file (copied from X11R4 distribution)
  377. * All files: Replaced occurrences of #include <X11/copyright.h>
  378. with #include "copyright.h"
  379. 1991-10-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  380. * XMenu.h (enum _xmmode): Remove spurious comma.
  381. * X10.h: New file.
  382. * XMenu.h, XMenuInt.h: Include X10.h from this dir.
  383. 1990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
  384. * XMenu.h (struct _xmenu): Use unsigned long for colors.
  385. 1990-11-12 Richard Stallman (rms@mole.ai.mit.edu)
  386. * Internal.c: Declare argument `display' in some functions.
  387. ;; Local Variables:
  388. ;; coding: utf-8
  389. ;; End:
  390. Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc.
  391. This file is part of GNU Emacs.
  392. GNU Emacs is free software: you can redistribute it and/or modify
  393. it under the terms of the GNU General Public License as published by
  394. the Free Software Foundation, either version 3 of the License, or
  395. (at your option) any later version.
  396. GNU Emacs is distributed in the hope that it will be useful,
  397. but WITHOUT ANY WARRANTY; without even the implied warranty of
  398. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  399. GNU General Public License for more details.
  400. You should have received a copy of the GNU General Public License
  401. along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.