Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
[bpt/emacs.git] / admin / ChangeLog
1 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2
3 * coccinelle/overlay.cocci, coccinelle/symbol.cocci: Remove.
4
5 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
6
7 Port to Solaris 8.
8 * CPP-DEFINES (WRETCODE): Remove.
9
10 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
11
12 * coccinelle/overlay.cocci: Semantic patch to replace direct
13 access to Lisp_Object members of struct Lisp_Overlay to MVAR.
14
15 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
16
17 * coccinelle/symbol.cocci: Semantic patch to replace direct
18 access to Lisp_Object members of struct Lisp_Symbol to SVAR.
19
20 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
21
22 * coccinelle/process.cocci: Semantic patch to replace direct
23 access to Lisp_Object members of struct Lisp_Process to PVAR.
24
25 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
26
27 * coccinelle/window.cocci: Semantic patch to replace direct
28 access to Lisp_Object members of struct window to WVAR.
29
30 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
31
32 * coccinelle/frame.cocci: Semantic patch to replace direct
33 access to Lisp_Object members of struct frame to FVAR.
34
35 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
36
37 Use Gnulib environ and stdalign modules (Bug#9772, Bug#9960).
38 * merge-gnulib: Add environ, stdalign.
39
40 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
41
42 * coccinelle/unibyte_string.cocci: Semantic patch to convert from
43 make_unibyte_string to build_unibyte_string where appropriate.
44
45 2012-07-17 Eli Zaretskii <eliz@gnu.org>
46
47 * CPP-DEFINES: Remove FILE_SYSTEM_CASE.
48
49 2012-07-17 Chong Yidong <cyd@gnu.org>
50
51 * Version 24.1 released.
52
53 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
54
55 Assume mkdir, perror, rename, rmdir, strerror.
56 * CPP-DEFINES (HAVE_MKDIR, HAVE_PERROR, HAVE_RENAME, HAVE_RMDIR)
57 (HAVE_STRERROR, strerror):
58 Remove.
59
60 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
61
62 * coccinelle/list_loop.cocci: Semantic patch to convert from Fcdr
63 to XCDR and consistently use CONSP in the list iteration loops.
64 * coccinelle/vector_contents.cocci: Fix indentation.
65
66 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
67
68 * bzrmerge.el: Use cl-lib.
69
70 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
71
72 Rename configure.in to configure.ac (Bug#11603).
73 * admin.el (set-version):
74 * quick-install-emacs (VERSION):
75 Get version number from configure.ac, not configure.in.
76
77 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
78
79 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
80 * merge-gnulib (GNULIB_MODULES): Add c-strcase.
81
82 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
83
84 * coccinelle/xzalloc.cocci: Semantic patch to convert
85 calls to xmalloc with following memset to xzalloc.
86
87 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
88
89 * CPP-DEFINES (LISP_FLOAT_TYPE): Remove, obsolete.
90
91 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
92
93 * coccinelle/build_string.cocci: Semantic patch
94 to convert from make_string to build_string.
95
96 2012-06-24 Dmitry Antipov <dmantipov@yandex.ru>
97
98 First Coccinelle semantic patch.
99 * coccinelle: New subdirectory
100 * coccinelle/README: Documentation stub.
101 * coccinelle/vector_contents.cocci: Semantic patch to replace direct
102 access to `contents' member of Lisp_Vector objects with AREF and ASET
103 where appropriate.
104
105 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
106
107 Support higher-resolution time stamps (Bug#9000).
108 * merge-gnulib (GNULIB_MODULES): Add dtotimespec, gettime,
109 gettimeofday, pselect, stat-time, sys_time, time, timespec-add,
110 timespec-sub, utimens.
111 (GNULIB_TOOL_FLAGS): Add --avoid=select --avoid=sigprocmask.
112 This trims down the gnulib import, from the very latest gnulib.
113 Emacs does its own implementation of 'select' and 'sigprocmask'
114 on Windows, and it assumes 'select' and 'sigprocmask' on non-Windows
115 hosts, so it doesn't need these modules.
116 Similarly, avoid errno, fcntl, fcntl-h, fstat, and sys_types, as
117 these gnulib modules are only for Windows porting and Emacs ports
118 to Windows in a different way.
119
120 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
121
122 * make-emacs: Rename --union-type to --check-lisp-type.
123 Define CHECK_LISP_OBJECT_TYPE insted of USE_LISP_UNION_TYPE.
124 * CPP-DEFINES (DEBUG_LISP_OBJECT_TYPE): Rename from
125 USE_LISP_UNION_TYPE.
126
127 2012-06-03 Glenn Morris <rgm@gnu.org>
128
129 * quick-install-emacs (PUBLIC_LIBSRC_SCRIPTS): Remove rcs-checkin.
130
131 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
132
133 Remove --disable-maintainer-mode option from 'configure'. (Bug#11555)
134 * make-tarball.txt: Don't worry about maintainer mode.
135
136 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
137
138 * CPP-DEFINES: Remove HAVE_SYSINFO.
139
140 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
141
142 Assume gnulib does largefile.
143 * merge-gnulib (GNULIB_MODULES): Add largefile.
144
145 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
146
147 Remove src/m/*.
148 * CPP-DEFINES: Do not mention src/m/*.h.
149 (BITS_PER_EMACS_INT, BITS_PER_LONG, BITS_PER_CHAR)
150 (BITS_PER_SHORT, BITS_PER_INT): Remove.
151 * MAINTAINERS: Remove src/m/.
152
153 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
154
155 Use full name for m4/gnulib-comp.m4. (Bug#11529)
156 * merge-gnulib: Leave m4/gnulib-comp.m4's name alone.
157
158 Assume C89 or later.
159 * CPP-DEFINES: Remove NULL, const.
160
161 Make merging from gnulib a script, not a makefile action.
162 * merge-gnulib: New script, with actions moved here from
163 ../Makefile.in.
164
165 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
166
167 * CPP-DEFINES (HAVE_GETDOMAINNAME): Remove.
168
169 * CPP-DEFINES (HAVE_FTIME): Remove.
170
171 2012-05-02 Glenn Morris <rgm@gnu.org>
172
173 * bzrmerge.el (bzrmerge-skip-regexp): Add "Auto-commit".
174
175 2012-04-10 Glenn Morris <rgm@gnu.org>
176
177 * bzrmerge.el (bzrmerge-skip-regexp): Add "from trunk".
178
179 * unidata/Makefile.in: Add FSF copyright.
180 Make it use autoconf features, and work for out-of-tree builds.
181
182 2012-04-07 Eli Zaretskii <eliz@gnu.org>
183
184 * unidata/README:
185 * unidata/copyright.html:
186 * unidata/BidiMirroring.txt:
187 * unidata/UnicodeData.txt: Update for the latest version 6.1 of
188 the Unicode Standard.
189
190 2012-02-16 Kenichi Handa <handa@m17n.org>
191
192 * unidata/unidata-gen.el (unidata-prop-alist): Change the default
193 values of name and old-name to nil.
194 (unidata-get-name): Return nil for the default value.
195
196 2012-02-11 Glenn Morris <rgm@gnu.org>
197
198 * admin.el (cusver-find-files, cusver-scan, cusver-goto-xref)
199 (cusver-check): New functions.
200
201 2012-01-19 Glenn Morris <rgm@gnu.org>
202
203 * bzrmerge.el (bzrmerge-missing): Allow a definitive "no" answer to the
204 "skip?" question, since there can be multiple such for any revision.
205
206 2012-01-14 Eli Zaretskii <eliz@gnu.org>
207
208 * FOR-RELEASE (Check the Emacs Tutorial): Mark TUTORIAL.he as
209 updated and checked.
210
211 2011-11-26 Andreas Schwab <schwab@linux-m68k.org>
212
213 * grammars/bovine-grammar.el (bovine--grammar-newstyle-unquote):
214 Avoid warning about old-style backquote.
215
216 * grammars/wisent-grammar.el (auto-mode-alist): Change `$' to `\''
217 in regexp.
218 (wisent-make-parsers): Likewise. Quote `.'.
219
220 * grammars/bovine-grammar.el (auto-mode-alist): Change `$' to `\''
221 in regexp.
222 (bovine-make-parsers): Likewise. Quote `.'.
223
224 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
225
226 * CPP-DEFINES (VIRT_ADDR_VARIES): Remove.
227
228 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
229
230 * admin.el (manual-dvi): Fix typo.
231
232 2011-11-15 Eli Zaretskii <eliz@gnu.org>
233
234 * nt/README-ftp-server: Update the information about PNG libraries.
235
236 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
237
238 * make-emacs: Fix typo.
239
240 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
241
242 * unidata/makefile.w32-in (clean): Remove bidimirror.h and biditype.h.
243
244 2011-10-31 David Engster <deng@randomsample.de>
245
246 * grammars/bovine-grammar.el: Avoid using old-style backquotes.
247
248 2011-10-28 Eli Zaretskii <eliz@gnu.org>
249
250 * nt/README-ftp-server: Mention UNICOWS.DLL as prerequisite for
251 running Emacs on Windows 9X.
252
253 2011-09-26 Chong Yidong <cyd@stupidchicken.com>
254
255 * admin.el (set-version): Fix regexps for config.nt and
256 sed2v2.inp.
257
258 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
259
260 Merge from gnulib (Bug#9169).
261 * notes/copyright: The files compile, config.guess, config.sub,
262 depcomp, install-sh, missing, and move-if-change are now in the
263 new build-aux subdirectory. The files arg-nonnull.h, c++defs.h,
264 and warn-on-use.h are now in build-aux/snippets. New file
265 build-aux/snippets/_Noreturn.h.
266
267 2011-08-23 Eli Zaretskii <eliz@gnu.org>
268
269 * unidata/unidata-gen.el (unidata-prop-alist): Update the default
270 values of bidi-class according to DerivedBidiClass.txt from the
271 latest UCD.
272
273 2011-08-23 Kenichi Handa <handa@m17n.org>
274
275 * unidata/unidata-gen.el (unidata-prop-alist): Provide default
276 values for name, general-category, canonical-combining-class,
277 mirrored, and bidi-class. Describe the meaning of value nil for
278 decimal-digit-value, digit-value, numeric-value, uppercase,
279 lowercase, titlecase, and mirroring.
280 (unidata-gen-table): Handle the case that default-value is a
281 list. Set default values of characters not listed in a table.
282 (unidata-get-name): Return an empty string if a value in a
283 char-table is nil.
284 (unidata-get-decomposition): Return a list of character itself if
285 a value in a char-table is nil.
286
287 2011-08-15 Eli Zaretskii <eliz@gnu.org>
288
289 * unidata/bidimirror.awk: File removed.
290
291 * unidata/biditype.awk: File removed.
292
293 * unidata/makefile.w32-in (all): Remove src/biditype.h and
294 src/bidimirror.h.
295 (../../src/biditype.h, ../../src/bidimirror.h): Delete.
296
297 * unidata/Makefile.in (all): Remove src/biditype.h and
298 src/bidimirror.h.
299 (../../src/biditype.h, ../../src/bidimirror.h): Delete.
300
301 2011-07-07 Juanma Barranquero <lekktu@gmail.com>
302
303 * unidata/makefile.w32-in (charprop-SH, charprop-CMD):
304 Duplicate change in Makefile.in (2011-07-06T22:43:48Z!handa@m17n.org).
305
306 2011-07-06 Kenichi Handa <handa@m17n.org>
307
308 * unidata/unidata-gen.el (unidata-dir): New variable.
309 (unidata-setup-list): Expand unidata-text-file in unidata-dir.
310 (unidata-prop-alist): INDEX element may be a function.
311 New optional element VAL-LIST (for general-category and bidi-class).
312 New entry `mirroring'.
313 (unidata-prop-default, unidata-prop-val-list): New subst.
314 (unidata-get-character, unidata-put-character): Delete them.
315 (unidata-gen-table-character): New arg IGNORE. Adjusted for the
316 above changes.
317 (unidata-get-symbol, unidata-get-integer, unidata-get-numeric)
318 (unidata-put-symbol, unidata-put-integer, unidata-put-numeric):
319 Delete them.
320 (unidata-encode-val): Assume that the first element of VAL-LIST is
321 a cons (nil . 0).
322 (unidata-gen-table): Change argument DEFAULT-VALUE to VAL-LIST.
323 Always store the encoded value.
324 (unidata-gen-table-symbol): New args DEFAULT-VALUE and VAL-LIST.
325 Set the 1st and the 2nd extra slots to index numbers for C
326 functions.
327 (unidata-gen-table-integer): Likewise.
328 (unidata-gen-table-numeric): Likewise.
329 (unidata-gen-table-name): New arg IGNORE.
330 (unidata-gen-table-decomposition): Likewise.
331 (unidata-describe-general-category): Add the case nil to the
332 description alist.
333 (unidata-gen-mirroring-list): New function.
334 (unidata-gen-files): New arg DATA-DIR. Adjusted for the change of
335 unidata-prop-alist. Handle the case of storing multiple
336 char-tables in a file.
337
338 * unidata/Makefile.in (${DSTDIR}/charprop.el): New arg to
339 unidata-gen-files.
340
341 2011-05-21 Glenn Morris <rgm@gnu.org>
342
343 * bzrmerge.el (bzrmerge-resolve): Suppress prompts about file-locals.
344
345 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
346
347 * Version 23.3 released.
348
349 2011-02-23 Juanma Barranquero <lekktu@gmail.com>
350
351 * notes/bugtracker (bugtracker_debbugs_url): Fix typo.
352
353 2011-02-19 Eli Zaretskii <eliz@gnu.org>
354
355 * admin.el (set-version): Add msdos/sed2v2.inp.
356
357 2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
358
359 Remove no-longer needed getloadavg symbols.
360 * CPP-DEFINES (LOAD_AVE_CVT, LOAD_AVE_TYPE, FSCALE, KERNEL_FILE):
361 (LDAV_SYMBOL): Remove.
362
363 2011-02-12 Glenn Morris <rgm@gnu.org>
364
365 * bzrmerge.el (bzrmerge-resolve): Fix bzr revert call.
366
367 2011-02-05 Glenn Morris <rgm@gnu.org>
368
369 * bzrmerge.el (bzrmerge-warning-buffer): New constant.
370 (bzrmerge-apply): Use it.
371 (bzrmerge): Kill any old warning buffer first.
372
373 2011-02-03 Glenn Morris <rgm@gnu.org>
374
375 * bzrmerge.el (bzrmerge-buffer): New constant.
376 (bzrmerge-merges, bzrmerge-missing, bzrmerge-apply): Use it.
377 (bzrmerge-missing): If nothing to do, return nil not (nil).
378 (bzrmerge-apply): Remove odd character from message.
379 (bzrmerge): Give status messages.
380
381 2011-01-31 Eli Zaretskii <eliz@gnu.org>
382
383 * admin.el (set-version): Remove lib-src/makefile.w32-in.
384 Add nt/config.nt.
385
386 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
387
388 src/emacs.c now gets version number from configure.in
389 * admin.el (set-version): Don't update src/emacs.c.
390 * quick-install-emacs (VERSION): Get it from configure.in, not from
391 src/emacs.c.
392
393 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
394
395 strftime: import from gnulib
396 * notes/copyright: strftime.c moved from src to lib.
397
398 2011-01-25 Glenn Morris <rgm@gnu.org>
399
400 * bzrmerge.el (bzrmerge-skip-regexp): New variable.
401 (bzrmerge-missing): Use it.
402
403 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
404
405 * make-tarball.txt: Suggest 'autoreconf -I m4 --force'
406 rather than doing rm and autoconf by hand. See
407 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00673.html>.
408
409 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
410
411 * notes/bzr (Installing changes from gnulib): New section.
412 Need for this suggested by Stefan Monnier.
413
414 2011-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
415
416 * bzrmerge.el (bzrmerge-apply): Warn the user when the tree might be in
417 an inconsistent state.
418
419 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
420
421 Update copyright notes to match recent gnulib-related changes.
422 * notes/copyright: Add aclocal.m4, m4/*.m4, lib/Makefile.in,
423 arg-nonnull.h, c++defs.h, compile, depcomp, missing,
424 warn-on-use.h, lib/*.[ch], lib/gnulib.mk. Remove src/mktime.c,
425 lib-src/getopt1.c, lib-src/getopt_int.h (files are now in lib and
426 are subsumed by the lib/*.[ch] rule). Remove m4/getopt.m4 (now
427 subsumed by m4/*.m4 rule). config.guess, config.sub, and
428 doc/man/texinfo.tex are now copied in from gnulib.
429
430 2011-01-15 Glenn Morris <rgm@gnu.org>
431
432 * charsets/cp51932.awk, charsets/eucjp-ms.awk: No longer print arch-tag.
433
434 * bzrmerge.el (bzrmerge-missing): Add another skip indicator.
435 (bzrmerge-resolve): Also ignore cl-loaddefs.el.
436
437 2011-01-14 Glenn Morris <rgm@gnu.org>
438
439 * admin.el (set-copyright): Also handle \year in refcards/*.tex.
440
441 2011-01-14 Glenn Morris <rgm@gnu.org>
442
443 * bzrmerge.el: Require cl when compiling.
444 (bzrmerge-merges): Doc fix.
445
446 2011-01-07 Paul Eggert <eggert@cs.ucla.edu>
447
448 * notes/copyright: There's only one install-sh, not two, so fix a
449 typo claiming that there's two. Add move-if-change to the list of
450 GPL files imported from gnulib.
451
452 2011-01-07 Paul Eggert <eggert@cs.ucla.edu>
453
454 * notes/copyright: Report status more accurately for non-GPL files.
455 Report copyright status more accurately for mkinstalldirs,
456 configure, m4/getopt.m4, and msdos/sed*.inp.
457
458 2011-01-02 Eli Zaretskii <eliz@gnu.org>
459
460 * nt/README.W32: Update the information about PNG support libraries.
461 (Bug#7716)
462
463 2010-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
464
465 * bzrmerge.el: New file to help merge branches while skipping
466 some revisions (e.g. from emacs-23 to trunk).
467
468 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
469
470 * CPP-DEFINES (EXPLICIT_SIGN_EXTEND): Remove.
471
472 2010-10-12 Glenn Morris <rgm@gnu.org>
473
474 * notes/nextstep: Move here from ../nextstep/DEV-NOTES.
475
476 2010-10-09 Glenn Morris <rgm@gnu.org>
477
478 * admin.el (set-version): Add doc/emacs/emacsver.texi.
479
480 2010-10-09 Glenn Morris <rgm@gnu.org>
481
482 * admin.el (set-version): No need to act on doc/ files any more.
483
484 * quick-install-emacs (PUBLIC_LIBSRC_BINARIES): Remove b2m.
485
486 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
487
488 * unidata/BidiMirroring.txt: Update from
489 http://www.unicode.org/Public/6.0.0/ucd/BidiMirroring-6.0.0d2.txt
490
491 * unidata/UnicodeData.txt: Update from
492 http://www.unicode.org/Public/6.0.0/ucd/UnicodeData-6.0.0d7.txt
493
494 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
495
496 * CPP-DEFINES (WORDS_BIG_ENDIAN): Remove.
497
498 2010-08-05 Eli Zaretskii <eliz@gnu.org>
499
500 * MAINTAINERS: Rename src/unexec.c => src/unexcoff.c.
501
502 2010-07-24 Christoph Scholtes <cschol2112@gmail.com>
503
504 * admin.el: Write version number to nt/makefile.w32-in.
505 * nt/makedist.bat: Remove; replaced with `zipdist.bat'
506 in the nt/ directory.
507 * nt/README.W32: Relocate to nt/ directory.
508
509 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
510
511 * CPP-DEFINES (HAVE_INDEX, HAVE_RINDEX): Remove.
512
513 2010-07-08 Eli Zaretskii <eliz@gnu.org>
514
515 * MAINTAINERS: Update my responsibilities.
516
517 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
518
519 * CPP-DEFINES (BCOPY_DOWNWARD_SAFE, BCOPY_UPWARD_SAFE)
520 (GAP_USE_BCOPY, HAVE_BCMP, HAVE_BCOPY, bcmp, bcopy, bzero):
521 Remove.
522
523 2010-06-12 Eli Zaretskii <eliz@gnu.org>
524
525 * unidata/bidimirror.awk: New file.
526
527 * unidata/BidiMirroring.txt: New file from
528 http://www.unicode.org/Public/6.0.0/ucd/BidiMirroring-6.0.0d1.txt.
529
530 * unidata/Makefile.in (../../src/bidimirror.h): New target.
531 (all): Depend on ../../src/biditype.h and ../../src/bidimirror.h.
532
533 * unidata/makefile.w32-in (../../src/bidimirror.h): New target.
534 (all): Depend on ../../src/biditype.h and ../../src/bidimirror.h.
535
536 * unidata/biditype.awk: New file.
537
538 * unidata/Makefile.in (../../src/biditype.h): New target.
539
540 * unidata/makefile.w32-in (../../src/biditype.h): New target.
541
542 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
543
544 * unidata/UnicodeData.txt: Update from
545 http://www.unicode.org/Public/6.0.0/ucd/UnicodeData-6.0.0d5.txt
546
547 2010-05-27 Glenn Morris <rgm@gnu.org>
548
549 * quick-install-emacs (AVOID): No more Makefile.c files.
550
551 * notes/cpp: Remove file.
552
553 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
554
555 * admin.el (set-version, set-copyright): Update emacs.c instead of
556 version.el.
557
558 * make-tarball.txt: Update filename list in step 6.
559
560 * quick-install-emacs: Scan emacs.c instead of version.el for
561 version string.
562
563 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
564
565 * Version 23.2 released.
566
567 2010-04-01 Eli Zaretskii <eliz@gnu.org>
568
569 * CPP-DEFINES (__DJGPP__, __GO32__): Remove, no longer used.
570
571 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
572
573 * Branch for 23.2.
574
575 2010-03-10 Miles Bader <miles@gnu.org>
576
577 * quick-install-emacs: Use more portable shell syntax.
578
579 * quick-install-emacs (AVOID): Be more picky about files we avoid
580 installing.
581
582 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
583
584 * quick-install-emacs (PRUNED): Fix typo in message.
585
586 2010-01-20 Glenn Morris <rgm@gnu.org>
587
588 * revdiff: Remove file that only works with CVS, and isn't really
589 needed with Bazaar (given the in-built revision options of bzr diff).
590
591 2010-01-12 Glenn Morris <rgm@gnu.org>
592
593 * emacs-pretesters, make-announcement: Use bug-gnu-emacs rather
594 than emacs-pretest-bug for bug reports for development versions.
595
596 2009-11-06 Kenichi Handa <handa@m17n.org>
597
598 * unidata/unidata-gen.el (unidata-gen-table): Fix for the case
599 that the block data and the following per-char data fall into the
600 same char-table leaf.
601
602 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
603
604 * unidata/UnicodeData.txt: Update to Unicode 5.2.0.
605
606 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
607
608 * unidata/.gitignore: New file.
609
610 2009-08-22 Eli Zaretskii <eliz@gnu.org>
611
612 * notes/bugtracker: How to reassign a bug to a list of packages.
613
614 * notes/newfile: Details of how to check for problems with DOS 8+3
615 file-name restrictions.
616
617 2009-08-18 Glenn Morris <rgm@gnu.org>
618
619 * notes/newfile: New file.
620
621 2009-07-11 Eli Zaretskii <eliz@gnu.org>
622
623 * make-tarball.txt: Add a note about bumping the value of
624 customize-changed-options-previous-release.
625
626 2009-06-24 Kenichi Handa <handa@m17n.org>
627
628 * charsets/mapconv: For the Unicode format files, do reverse sort
629 and don't compact the map. This is to prefer the first one in the
630 duplicated mappings (e.g. 0x20->U+0020, 0x20->U+00A0).
631
632 2009-06-12 Kenichi Handa <handa@m17n.org>
633
634 * charsets/Makefile (JISX213A.map): Make it depend on
635 mapfiles/JISX213A.map.gz.
636 (BIG5-1.map, BIG5-2.map): Prepend "# " to the first comment line.
637
638 * charsets/mapfiles/JISX213A.map.gz: New file.
639
640 * charsets/mapfiles/README: Describe JISX213A.map.gz.
641
642 2009-06-12 Kenichi Handa <handa@m17n.org>
643
644 * charsets/mapfiles/*: New files.
645
646 * charsets/mule-charsets.el: Mostly re-written to generate all
647 MULE-*.map files.
648
649 * charsets/mapconv: Mostly re-written to handle "gzip"ed input
650 files.
651
652 * charsets/eucjp-ms.awk: Mostly re-written to handle glibc's
653 EUC-JP-MS.
654
655 * charsets/cp51932.awk (END): Print arch-tag at the tail.
656
657 * charsets/Makefile: Maps depend on files under mapfiles or
658 ${GLIBC_CHARMAPS}.
659
660 2009-04-21 Kenichi Handa <handa@m17n.org>
661
662 * unidata/unidata-gen.el (unidata-get-decomposition): Fix previous
663 change.
664
665 2009-04-17 Kenichi Handa <handa@m17n.org>
666
667 * unidata/unidata-gen.el (unidata-get-decomposition):
668 Adjust Hangle decomposition rule to Unicode.
669
670 2009-04-09 Kenichi Handa <handa@m17n.org>
671
672 * unidata/unidata-gen.el (unidata-describe-decomposition):
673 Return a string with a composition property to disable combining
674 characters being composed.
675
676 2009-03-11 Miles Bader <miles@gnu.org>
677
678 * quick-install-emacs: Be more clever about locating info directory.
679
680 2009-02-24 Juanma Barranquero <lekktu@gmail.com>
681
682 * nt/README.W32: Fix typos.
683
684 2009-02-23 Jason Rumney <jasonr@gnu.org>
685
686 * nt/README-ftp-server: Update for 23.0.91.
687
688 * nt/README.W32: Remove ever expanding versions of Windows.
689 Shorten FAQ URL. Remove mention of obsolete lock directory.
690 Windows distribution now bin and barebin only. Add note about
691 SVG support. Remove old tar and gzip problem workarounds.
692 Use new (22.x) -Q option. Report all bugs through bug tracker.
693
694 * nt/README-UNDUMP.W32: Modify for barebin distribution, as
695 undumped distribution no longer exists.
696
697 2009-02-05 Yu-ji Hosokawa <yu-ji@hoso.net> (tiny change)
698
699 * nt/README.W32: Fix typo. (Bug#2207)
700
701 2009-02-01 Chong Yidong <cyd@stupidchicken.com>
702
703 * admin.el (set-version): Remove deleted file ns-emacs.texi.
704
705 2008-12-02 Kenichi Handa <handa@m17n.org>
706
707 * unidata/unidata-gen.el (unidata-prop-alist): Docstring for
708 `decomposition' property adjusted.
709 (unidata-split-decomposition): Don't include surrounding "<" and
710 ">" in a symbol name.
711
712 2008-12-01 Kenichi Handa <handa@m17n.org>
713
714 * unidata/unidata-gen.el (unidata-prop-alist): Set `numeric-value'
715 property generator to unidata-gen-table-numeric. Docstring adjusted.
716 (unidata-get-numeric, unidata-put-numeric)
717 (unidata-gen-table-numeric): New functions.
718 (unidata-encode-val): Use assoc to get a slot in VAL-LIST.
719
720 2008-11-29 Eli Zaretskii <eliz@gnu.org>
721
722 * notes/documentation: Add notes about Antinews.
723
724 2008-10-23 Glenn Morris <rgm@gnu.org>
725
726 * admin.el (set-version): Add doc/misc/ns-emacs.texi.
727 Add/tweak some nextstep/ entries.
728
729 2008-09-19 Kenichi Handa <handa@m17n.org>
730
731 * FOR-RELEASE: Add an item for using EMACS_INT for buffer/string
732 positions.
733
734 2008-08-23 Eli Zaretskii <eliz@gnu.org>
735
736 * CPP-DEFINES: Add USER_FULL_NAME.
737
738 2008-08-16 Jason Rumney <jasonr@gnu.org>
739
740 * admin.el (set-version): Set version in nt/emacsclient.rc.
741
742 2008-08-06 Juanma Barranquero <lekktu@gmail.com>
743
744 * nt/dump.bat: Fix mixed EOLs.
745
746 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
747
748 * CPP-DEFINES: Add DARWIN_OS. Move USE_LISP_UNION_TYPE away from OS's.
749
750 2008-08-02 Eli Zaretskii <eliz@gnu.org>
751
752 * CPP-DEFINES: Add defines for accessing system processes.
753
754 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
755
756 * make-tarball.txt:
757 * admin.el:
758 * FOR-RELEASE:
759 * CPP-DEFINES: Remove mentions of Mac Carbon.
760
761 2008-07-16 Glenn Morris <rgm@gnu.org>
762
763 * admin.el (set-version, set-copyright): Add nextstep/ files.
764
765 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
766
767 * CPP-DEFINES: Add NS port related defines.
768
769 2008-06-16 Glenn Morris <rgm@gnu.org>
770
771 * admin.el (set-version): Add doc/lispref/vol1.texi,vol2.texi,
772 doc/lispref/book-spine.texinfo.
773
774 2008-06-15 Glenn Morris <rgm@gnu.org>
775
776 * admin.el (set-version): Add doc/misc/faq.texi.
777
778 2008-05-22 Juanma Barranquero <lekktu@gmail.com>
779
780 * FOR-RELEASE: Remove Windows problem about the XPM image library
781 being loaded too soon (fixed by Stefan Monnier on 2008-05-07).
782
783 2008-04-15 Juanma Barranquero <lekktu@gmail.com>
784
785 * unidata/UnicodeData.txt: Update to Unicode 5.1.
786
787 2008-04-14 Juanma Barranquero <lekktu@gmail.com>
788
789 * unidata/unidata-gen.el (unidata-prop-alist):
790 Fix typo in description of `numeric-value'.
791 (unidata-put-character): Fix typo in error message.
792
793 2008-02-21 Glenn Morris <rgm@gnu.org>
794
795 * notes/unicode, notes/font-backend: New files, split off from
796 README.unicode.
797
798 2008-02-20 Kenichi Handa <handa@ni.aist.go.jp>
799
800 * FOR-RELEASE: Remove the problem of ucs-mule-8859-to-mule-unicode
801 being used in latin1-disp.el. Remove the problem of
802 cp-supported-codepages. Remove the problem of lost changelog for
803 ps-prin1.ps.
804
805 2008-02-16 Eli Zaretskii <eliz@gnu.org>
806
807 * unidata/makefile.w32-in (unidata.txt): Don't use $<, it's
808 non-portable in this context.
809
810 * unidata/Makefile.in (unidata.txt): Don't use $<, it's
811 non-portable in this context.
812
813 2008-02-09 Eli Zaretskii <eliz@gnu.org>
814
815 * unidata/makefile.w32-in (lisp): New variable.
816 (EMACSLOADPATH): Use $(lisp). Add lisp/international and
817 lisp/emacs-lisp.
818
819 2008-02-04 Jason Rumney <jasonr@gnu.org>
820
821 * unidata/makefile.w32-in (unidata.txt): Use ARGQUOTE and DQUOTE macros.
822
823 2008-02-02 Juanma Barranquero <lekktu@gmail.com>
824
825 * unidata/.cvsignore: Ignore also "Makefile.unix" and "makefile".
826
827 2008-02-02 Eli Zaretskii <eliz@gnu.org>
828
829 * unidata/makefile.w32-in (charprop-CMD): Fix last change.
830
831 * unidata/Makefile.in: Rename from Makefile.
832
833 * unidata/makefile.w32-in: New file.
834
835 2008-02-02 Jason Rumney <jasonr@gnu.org>
836
837 * unidata/unidata-gen.el (unidata-gen-files): Force unix line ends.
838
839 2008-02-01 Kenichi Handa <handa@m17n.org>
840
841 * unidata/copyright.html: New file.
842
843 2008-02-01 Kenichi Handa <handa@m17n.org>
844
845 * unidata/unidata-gen.el (unidata-get-decomposition): For Hangul
846 decomposition, if T is the same as TBase, don't include it in the
847 returned list.
848
849 2008-02-01 Kenichi Handa <handa@m17n.org>
850
851 * unidata/unidata-gen.el (unidata-text-file): Delete it.
852 (unidata-list): Initialize to nil.
853 (unidata-setup-list): New function.
854 (unidata-gen-files): New optional arg unidata-text-file.
855 If it's nil, set unidata-text-file to the left command line arg.
856 Call unidate-setup-list at first.
857
858 * unidata/Makefile (all): Depends on ${DSTDIR}/charprop.el.
859 (${DSTDIR}/charprop.el): Run emacs after cd to DISDIR.
860
861 2008-02-01 Kenichi Handa <handa@m17n.org>
862
863 * unidata/unidata-gen.el: Fix comment typo.
864 Change string-to-int to string-to-number.
865 (unidata-text-file): Define to .../unidata.txt.
866 (unidata-list): Just insert unidata-text-file.
867 (unidata-get-decomposition): Handle Hangul decomposition.
868 (unidata-gen-files): Don't use \040, instead at ^L near the end of file.
869
870 * unidata/Makefile (unidata.txt): New target.
871 (charprop.el): Depends on unidata.txt.
872 (clean): Remove unidata.txt.
873
874 2008-02-01 Kenichi Handa <handa@m17n.org>
875
876 * unidata/unidata-gen.el (unidata-get-name): Handle "CJK IDEOGRAPH".
877 (unidata-get-name): Handle U+110B.
878
879 2008-02-01 Kenichi Handa <handa@m17n.org>
880
881 Sub-directory `unidata' is for codes to generate charprop.el and
882 many other uni-*.el files from `UnicodeData.txt'.
883
884 * Unidata/README: New file.
885
886 * unidata/Makefile: New file.
887
888 * unidata/unidata-gen.el: New file.
889
890 * unidata/UnicodeData.txt: New file. Copied from
891 http://www.unicode.org on 2006-05-23.
892
893 * unidata/.cvsignore: New file.
894
895 2008-02-01 Kenichi Handa <handa@m17n.org>
896
897 * charsets/.cvsignore: New file.
898
899 * charsets/mapconv: Add code for handling KANJI-DATABASE format.
900
901 * charsets/Makefile (all): Rename target from charsets.
902 Depend on ${TRANS_TABLE}.
903 (CNS-2.map, CNS-3.map, CNS-4.map, CNS-5.map, CNS-6.map, CNS-7.map):
904 Generate from cns2ucsdkw.txt.
905 (install): Copy updated files only.
906
907 2008-02-02 Kenichi Handa <handa@m17n.org>
908
909 * charsets/cp932.awk: Append user-defined area of CP932.
910
911 2008-02-02 Kenichi Handa <handa@m17n.org>
912
913 * charsets/Makefile (JISX2131.map): Convert 0x2015 to 0x2014,
914 0x2299 to 0x29BF.
915
916 2008-02-01 Kenichi Handa <handa@m17n.org>
917
918 * charsets/Makefile (TRANS_TABLE): New macro.
919 (JISX0208.map): Convert 0x2015 to 0x2014.
920 (cp51932.el): New target.
921 (eucjp-ms.el): New target.
922 (install): Include ${TRANS_TABLE}.
923 (CJK): Include JISX213A.map.
924 (JISX213A.map): New target.
925
926 * charsets/eucjp-ms.awk: New file.
927
928 * charsets/cp51932.awk: New file.
929
930 2008-02-01 Kenichi Handa <handa@m17n.org>
931
932 * charsets/cp932.awk: New file.
933
934 * charsets/Makefile (CP932-2BYTE.map): Call mapconv with cp932.awk.
935
936 * charsets/mapconv: In UNICODE2 case, sort by 4th field after
937 running an awk program.
938
939 2008-02-01 Kenichi Handa <handa@m17n.org>
940
941 * charsets/mapconv: Handle UNICODE2.
942
943 * charsets/Makefile (CJK): Include CP932-2BYTE.map.
944 (CP932-2BYTE.map): New target.
945
946 2008-02-01 Kenichi Handa <handa@m17n.org>
947
948 * charsets: New directory for scripts to generate charset map
949 files in ../etc/charsets/.
950
951 * charsets/Makefile, charsets/mapconv, charsets/compact.awk:
952 * charsets/big5.awk, charsets/gb180302.awk, charsets/gb180304.awk:
953 * charsets/kuten.awk: New files.
954
955 2008-01-08 Glenn Morris <rgm@gnu.org>
956
957 * admin.el (set-version): Add doc/man/emacs.1.
958
959 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
960
961 * notes/copyright:
962 * MAINTAINERS: Remove references to files that have been removed.
963
964 2008-01-04 Glenn Morris <rgm@gnu.org>
965
966 * admin.el (set-copyright): Add lib-src/ebrowse.c.
967
968 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
969
970 * CPP-DEFINES: New file.
971
972 2007-12-08 Reiner Steib <Reiner.Steib@gmx.de>
973
974 * FOR-RELEASE: Remove "window-system in face definition" [of
975 gnus-treat-emphasize]. Remove "Gnus archive groups". Add comment
976 on gnus-dired.el.
977
978 2007-12-05 Glenn Morris <rgm@gnu.org>
979
980 * admin.el (set-version): Handle configure.in. Adapt for doc/
981 directory layout for manuals.
982
983 2007-12-01 Reiner Steib <Reiner.Steib@gmx.de>
984
985 * FOR-RELEASE: Remove Gnus send mail problem. Other Gnus bugs have
986 been fixed in Gnus CVS but have not yet been synched to Emacs.
987
988 2007-11-17 Glenn Morris <rgm@gnu.org>
989
990 * admin.el (process-lines): Move to ../lisp/subr.el.
991
992 2007-10-23 Glenn Morris <rgm@gnu.org>
993
994 * MAINTAINERS: Move here from ../.
995
996 2007-10-17 Juanma Barranquero <lekktu@gmail.com>
997
998 * make-emacs: Doc fix.
999
1000 2007-08-28 Glenn Morris <rgm@gnu.org>
1001
1002 * admin.el: Provide self.
1003
1004 2007-08-10 Jan Djärv <jan.h.d@swipnet.se>
1005
1006 * FOR-RELEASE: Add Gtk+ tool bar and GUD focus problem.
1007
1008 2007-07-25 Glenn Morris <rgm@gnu.org>
1009
1010 * Relicense all FSF files to GPLv3 or later.
1011
1012 2007-06-07 Glenn Morris <rgm@gnu.org>
1013
1014 * admin.el (set-copyright): New function.
1015
1016 2007-04-25 Nick Roberts <nickrob@snap.net.nz>
1017
1018 * make-tarball.txt: Add note about cutting the branch.
1019
1020 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
1021
1022 * Version 22.1 released.
1023
1024 2007-02-03 Eli Zaretskii <eliz@gnu.org>
1025
1026 * nt/makedist.bat: Change EOL format to DOS. Don't use
1027 redirection characters in REM lines.
1028
1029 2007-01-27 Jan Djärv <jan.h.d@swipnet.se>
1030
1031 * FOR-RELEASE: Removed Gtk/Xft issue.
1032
1033 2007-01-01 Miles Bader <miles@gnu.org>
1034
1035 * quick-install-emacs (get_config_var): Deal with weird magic
1036 string inserted by recent versions of autoconf.
1037
1038 2006-11-25 Juanma Barranquero <lekktu@gmail.com>
1039
1040 * admin.el (set-version): Set version number in
1041 lib-src/makefile.w32-in.
1042
1043 2006-11-06 Reiner Steib <Reiner.Steib@gmx.de>
1044
1045 * FOR-RELEASE (BUGS): Remove "Build failure under Suse 10.0" was
1046 due to a local miss-configuration.
1047
1048 2006-10-28 Chong Yidong <cyd@stupidchicken.com>
1049
1050 * make-announcement (OLD): Remove LEIM references in announcement
1051 since it is now built-in.
1052
1053 2006-10-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1054
1055 * admin.el (set-version): Set version numbers in "mac" subdirectory.
1056
1057 2006-10-03 Kenichi Handa <handa@m17n.org>
1058
1059 * FOR-RELEASE (BUGS): "An iso-8859-6 cannot be saved" fixed.
1060
1061 2006-08-13 Chong Yidong <cyd@stupidchicken.com>
1062
1063 * FOR-RELEASE: Elisp manual checking completed.
1064
1065 2006-07-17 Reiner Steib <Reiner.Steib@gmx.de>
1066
1067 * FOR-RELEASE: Update refcard section.
1068
1069 2006-07-14 Kim F. Storm <storm@cua.dk>
1070
1071 * FOR-RELEASE (BUGS): High cpu load on windows server sockets fixed.
1072
1073 2006-07-09 Kim F. Storm <storm@cua.dk>
1074
1075 * README: Use outline format. Add FOR-RELEASE.
1076
1077 2006-06-27 Chong Yidong <cyd@stupidchicken.com>
1078
1079 * FOR-RELEASE: Checking of info.texi done.
1080
1081 2006-06-08 Reiner Steib <Reiner.Steib@gmx.de>
1082
1083 * FOR-RELEASE: Update refcard section.
1084
1085 2006-06-07 Reiner Steib <Reiner.Steib@gmx.de>
1086
1087 * FOR-RELEASE: Update refcard section.
1088
1089 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
1090
1091 * FOR-RELEASE: Key sequence elisp node done.
1092
1093 2006-05-24 Reiner Steib <Reiner.Steib@gmx.de>
1094
1095 * FOR-RELEASE: Update refcard translations. Add coding cookie.
1096
1097 2006-05-21 Chong Yidong <cyd@mit.edu>
1098
1099 * FOR-RELEASE: point-entered /point-left bug fixed.
1100
1101 2006-05-12 Eli Zaretskii <eliz@gnu.org>
1102
1103 * FOR-RELEASE: Spell-checking the manuals is now done; remove the
1104 entry.
1105
1106 2006-05-06 Bill Wohler <wohler@newt.com>
1107
1108 * FOR-RELEASE: MH-E 8.0 has been released, so removed reminder
1109 about it.
1110
1111 2006-04-17 Ramprasad B <ramprasad_i82@yahoo.com>
1112
1113 * ./* (Copyright): Updated Copyright year(s).
1114
1115 2006-02-24 Reiner Steib <Reiner.Steib@gmx.de>
1116
1117 * FOR-RELEASE (BUGS): Add URLs/MIDs.
1118
1119 2006-02-20 Kim F. Storm <storm@cua.dk>
1120
1121 * FOR-RELEASE (NEW FEATURES): Completed work on this item:
1122 Rework how fringe bitmaps are defined and used.
1123 Currently, bitmap usage and bitmap appearance are "mixed-up" in a
1124 one-level representation. It would be cleaner to split the
1125 representation into a two-level model where first level maps
1126 bitmap usage to a bitmap name, and second level maps bitmap name to
1127 a bitmap appearance.
1128
1129 2006-01-27 Chong Yidong <cyd@stupidchicken.com>
1130
1131 * FOR-RELEASE: String allocation bugs fixed.
1132
1133 2005-12-13 Bill Wohler <wohler@newt.com>
1134
1135 * FOR-RELEASE: Ensure MH-E 8.0 has been released.
1136
1137 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
1138
1139 * FOR-RELEASE (DOCUMENTATION): Remove message-mail, gnus-*
1140 completing-read-multiple, mail-extract-address-components,
1141 mail-mode, quail-define-package, save-buffer and
1142 ucs-set-table-for-input from doc strings item (Done).
1143
1144 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
1145
1146 * FOR-RELEASE: Icons installed. Partial completion bug fixed.
1147
1148 2005-11-11 Kim F. Storm <storm@cua.dk>
1149
1150 * FOR-RELEASE (FATAL ERRORS): Fix infinite loop in redisplay
1151 when displaying a non-breaking space in an overlay string.
1152
1153 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
1154
1155 * FOR-RELEASE: Init file change implemented.
1156
1157 2005-10-27 Chong Yidong <cyd@stupidchicken.com>
1158
1159 * FOR-RELEASE: Fringe angle bitmap at eob fixed.
1160
1161 2005-10-19 Chong Yidong <cyd@stupidchicken.com>
1162
1163 * FOR-RELEASE (New features): max-image-size implemented.
1164 (Bugs): split-window done, by Kim F. Storm.
1165
1166 2005-10-17 Bill Wohler <wohler@newt.com>
1167
1168 * FOR-RELEASE (DOCUMENTATION): Remove lisp/toolbar from list
1169 since it's gone. Also marked mh-e as done.
1170
1171 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
1172
1173 * FOR-RELEASE (FATAL ERRORS): Remove item about JPEG
1174 libraries on Windows (Done).
1175
1176 2005-10-01 Jason Rumney <jasonr@gnu.org>
1177
1178 * admin.el (set-version): Set version numbers in nt/emacs.rc.
1179
1180 2005-08-31 Romain Francoise <romain@orebokech.com>
1181
1182 * FOR-RELEASE (New features): Remove vhdl-mode.el update
1183 item (Done).
1184
1185 2005-08-27 Romain Francoise <romain@orebokech.com>
1186
1187 * FOR-RELEASE (Bugs): Remove compile-internal item (Done).
1188
1189 2005-07-04 Lute Kamstra <lute@gnu.org>
1190
1191 Update FSF's address in GPL notices.
1192
1193 2005-06-10 Lute Kamstra <lute@gnu.org>
1194
1195 * admin.el (set-version): Set version in lisp manual too.
1196 * make-tarball.txt: Commit lispref/elisp.texi too.
1197
1198 2005-06-04 Richard M. Stallman <rms@gnu.org>
1199
1200 * emacs-pretesters: Refer to etc/DEBUG instead of duplicating it.
1201 Other cleanups.
1202
1203 2005-04-19 Lute Kamstra <lute@gnu.org>
1204
1205 * make-tarball.txt: Don't commit lisp/loaddefs.el.
1206
1207 2005-04-14 Lute Kamstra <lute@gnu.org>
1208
1209 * nt/makedist.bat (elfiles): Update.
1210
1211 * admin.el (add-release-logs): Fix require call.
1212
1213 2005-03-30 Marcelo Toledo <marcelo@marcelotoledo.org>
1214
1215 * FOR-RELEASE (Documentation): Add check the Emacs Tutorial.
1216 The first line of every tutorial must begin with a sentence saying
1217 "Emacs Tutorial" in the respective language. This should be
1218 followed by "See end for copying conditions", likewise in the
1219 respective language.
1220
1221 2005-03-29 Luc Teirlinck <teirllm@auburn.edu>
1222
1223 * FOR-RELEASE (TO BE DONE SHORTLY BEFORE RELEASE): New section.
1224 Add `undo-ask-before-discard' to it.
1225
1226 2005-03-02 Miles Bader <miles@gnu.org>
1227
1228 * quick-install-emacs: Only use the mkdir --verbose option if the
1229 script's --verbose option was specified (this avoids problems with
1230 default usage on systems where mkdir doesn't support that option).
1231
1232 2005-02-15 Jason Rumney <jasonr@gnu.org>
1233
1234 * nt/makedist.bat: Do not rely on non-standard behavior of
1235 tar --exclude.
1236
1237 2004-11-02 Jan Djärv <jan.h.d@swipnet.se>
1238
1239 * FOR-RELEASE (Indications): Remove two stage update for toolbar (Done).
1240
1241 2004-09-20 Luc Teirlinck <teirllm@auburn.edu>
1242
1243 * FOR-RELEASE (Indications): Rearrange checklists for Emacs and
1244 Elisp manuals.
1245
1246 2004-09-18 Luc Teirlinck <teirllm@auburn.edu>
1247
1248 * FOR-RELEASE (Indications): Clean up and update checklists for
1249 Emacs and Elisp manuals.
1250
1251 2004-09-11 Kim F. Storm <storm@cua.dk>
1252
1253 * FOR-RELEASE (New features): Remove Gnus 5.10 entry (Done!).
1254 (Documentation): Add NEWS entry.
1255 Add section lists for proof-reading Emacs and Lisp manuals.
1256
1257 2004-08-29 Kim F. Storm <storm@cua.dk>
1258
1259 * FOR-RELEASE (Documentation): Add man/ack.texi and AUTHORS.
1260
1261 2004-08-28 Jan Djärv <jan.h.d@swipnet.se>
1262
1263 * FOR-RELEASE (Indications): Remove entry about GTK and geometry
1264 (now behaves as well as other ports).
1265
1266 2004-06-28 Jan Djärv <jan.h.d@swipnet.se>
1267
1268 * FOR-RELEASE: Remove entry about GTK and monochrome displays (done).
1269
1270 2004-06-26 Eli Zaretskii <eliz@is.elta.co.il>
1271
1272 * FOR-RELEASE: Moved here from the etc directory.
1273
1274 2004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
1275
1276 * notes/BRANCH: New file, to be maintained per CVS branch.
1277
1278 2003-10-01 Miles Bader <miles@gnu.org>
1279
1280 * quick-install-emacs: Don't use "function" keyword when defining
1281 shell functions.
1282
1283 2003-09-29 Lute Kamstra <lute@gnu.org>
1284
1285 * make-tarball.txt: Mention regenerating Emacs' AUTHORS file.
1286
1287 2003-09-27 Miles Bader <miles@gnu.ai.mit.edu>
1288
1289 * quick-install-emacs: Remove fns-* pruning, since that file no
1290 longer seems to be generated.
1291 (AVOID): Quote literal periods. Quote braces in a way acceptable
1292 to all parties (gawk gets bitchy about using `\').
1293
1294 2003-08-19 Miles Bader <miles@gnu.org>
1295
1296 * quick-install-emacs: Add arch-specific ignored files to
1297 quick-install-emacs. Use quoting for periods that's acceptable
1298 to recent versions of gawk.
1299
1300 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
1301
1302 * cus-test.el: Remove obsolete workaround.
1303
1304 2003-04-22 Andrew Innes <andrewi@gnu.org>
1305
1306 * nt/makedist.bat: Fix multi-file .zip distribution, by splitting
1307 emacs.exe before zipping, and including batch file to recreate
1308 after unpacking.
1309
1310 * nt/stitch.bat: New file.
1311
1312 * nt/README-ftp-server: Update wording and version number etc.
1313 Add extra instructions for installing multi-file .zip
1314 distribution.
1315
1316 * nt/README.W32: Remove personal email address and update wording.
1317
1318 * nt/README-UNDUMP.W32: Remove personal email address and update
1319 wording.
1320
1321 2003-02-10 Francesco Potortì <pot@gnu.org>
1322
1323 * make-changelog-diff: New script, code stolen from make-announcement.
1324
1325 * make-announcement: Use make-changelog-diff.
1326
1327 2003-01-20 Francesco Potortì <pot@gnu.org>
1328
1329 * make-tarball.txt: Step-by-step instructions for making a tarball.
1330
1331 * make-announcement: A script for creating pretest announcements.
1332
1333 2003-01-17 Francesco Potortì <pot@gnu.org>
1334
1335 * admin.el (add-release-logs): Expand the directory name before
1336 calling find(1).
1337 (add-release-logs): Use the same methods as add-log.el for writing
1338 the date and the user's name and address.
1339
1340 2003-01-07 Miles Bader <miles@gnu.org>
1341
1342 * quick-install-emacs: Unset LANG etc. to avoid non-standard
1343 command output from non-C locales.
1344
1345 2002-10-16 Markus Rost <rost@math.ohio-state.edu>
1346
1347 * cus-test.el: Extended and reorganized. There are now 4 tests
1348 which can be run in batch mode. See the Commentary section.
1349
1350 2002-10-08 Markus Rost <rost@math.ohio-state.edu>
1351
1352 * cus-test.el: New file.
1353
1354 2002-05-27 Miles Bader <miles@gnu.org>
1355
1356 * quick-install-emacs (VERSION): Calculate using the same method
1357 that configure.in uses.
1358
1359 2002-04-26 Pavel Janík <Pavel@Janik.cz>
1360
1361 * emacs-pretesters: New file with information for Emacs
1362 pretesters.
1363
1364 2002-03-22 Paul Eggert <eggert@twinsun.com>
1365
1366 * quick-install-emacs (PRUNED): Avoid "head -1" and "tail +2", as
1367 POSIX 1003.1-2001 disallows both usages.
1368
1369 2002-02-11 Andrew Innes <andrewi@gnu.org>
1370
1371 * nt/makedist.bat: Don't include elisp/term/*.el files twice.
1372
1373 2002-01-24 Andrew Innes <andrewi@gnu.org>
1374
1375 * nt/README.W32: Remove unnecessary version number and date
1376 references.
1377
1378 * nt/README-UNDUMP.W32: Ditto.
1379
1380 2001-12-06 Gerd Moellmann <gerd@gnu.org>
1381
1382 * make-emacs: Add --trace-move.
1383
1384 2001-10-23 Andrew Innes <andrewi@gnu.org>
1385
1386 * nt/makedist.bat: Remove remaining obsolete reference to
1387 GETTING.GNU.SOFTWARE.
1388
1389 2001-10-22 Gerd Moellmann <gerd@gnu.org>
1390
1391 * admin.el (set-version): Use `s' interactive spec for
1392 version number.
1393
1394 2001-10-20 Gerd Moellmann <gerd@gnu.org>
1395
1396 * (Version 21.1 released.)
1397
1398 2001-10-20 Gerd Moellmann <gerd@gnu.org>
1399
1400 * admin.el (add-release-logs): Put the log entry in lispref, too.
1401
1402 2001-10-20 Miles Bader <miles@gnu.org>
1403
1404 * quick-install-emacs: Exit if we can't find some variable.
1405 (AVOID): Add .orig & .rej files.
1406 (get_config_var): Be more liberal about format of config.status
1407 sed commands.
1408
1409 2001-10-19 Gerd Moellmann <gerd@gnu.org>
1410
1411 * admin.el: New file.
1412
1413 * build-configs: Add --help option. Add support for building
1414 in arbitrary source trees.
1415
1416 2001-10-17 Gerd Moellmann <gerd@gnu.org>
1417
1418 * alloc-colors.c: New file.
1419
1420 2001-10-13 Gerd Moellmann <gerd@gnu.org>
1421
1422 * make-emacs: Add --boot switch for bootstrapping. Logs to
1423 EMACS_ROOT/boot.log, renames previous log file to boot.log.old.
1424
1425 2001-10-05 Gerd Moellmann <gerd@gnu.org>
1426
1427 * Branch for 21.1.
1428
1429 2001-09-04 Andrew Innes <andrewi@gnu.org>
1430
1431 * admin/nt/makedist.bat: Remove reference to obsolete file
1432 GETTING.GNU.SOFTWARE. Remove outdated comments. Explain about
1433 version of tar used.
1434
1435 ;; Local Variables:
1436 ;; coding: utf-8
1437 ;; End:
1438
1439 Copyright (C) 2001-2012 Free Software Foundation, Inc.
1440
1441 This file is part of GNU Emacs.
1442
1443 GNU Emacs is free software: you can redistribute it and/or modify
1444 it under the terms of the GNU General Public License as published by
1445 the Free Software Foundation, either version 3 of the License, or
1446 (at your option) any later version.
1447
1448 GNU Emacs is distributed in the hope that it will be useful,
1449 but WITHOUT ANY WARRANTY; without even the implied warranty of
1450 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1451 GNU General Public License for more details.
1452
1453 You should have received a copy of the GNU General Public License
1454 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.