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