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