diff options
| author | Joakim Verona | 2012-07-27 02:22:03 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-07-27 02:22:03 +0200 |
| commit | 5fb63197843dcae66f2fe0ddd6f4a9d560e9db2f (patch) | |
| tree | 5c55f1096a656a9759f0b53a0b5d1a2289bd366f /admin/ChangeLog | |
| parent | 0c5c85cf2b350c965bb1ffa5b2d77c2adebc406b (diff) | |
| parent | 562157c814037dcba58a20cd6908a95992c22283 (diff) | |
| download | emacs-5fb63197843dcae66f2fe0ddd6f4a9d560e9db2f.tar.gz emacs-5fb63197843dcae66f2fe0ddd6f4a9d560e9db2f.zip | |
upstream
Diffstat (limited to 'admin/ChangeLog')
| -rw-r--r-- | admin/ChangeLog | 108 |
1 files changed, 94 insertions, 14 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index e3b35906ace..b4c88c20ed1 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,8 +1,88 @@ | |||
| 1 | 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | * coccinelle/unibyte_string.cocci: Semantic patch to convert from | ||
| 4 | make_unibyte_string to build_unibyte_string where appropriate. | ||
| 5 | |||
| 6 | 2012-07-17 Eli Zaretskii <eliz@gnu.org> | ||
| 7 | |||
| 8 | * CPP-DEFINES: Remove FILE_SYSTEM_CASE. | ||
| 9 | |||
| 10 | 2012-07-17 Chong Yidong <cyd@gnu.org> | ||
| 11 | |||
| 12 | * Version 24.1 released. | ||
| 13 | |||
| 14 | 2012-07-11 Paul Eggert <eggert@cs.ucla.edu> | ||
| 15 | |||
| 16 | Assume mkdir, perror, rename, rmdir, strerror. | ||
| 17 | * CPP-DEFINES (HAVE_MKDIR, HAVE_PERROR, HAVE_RENAME, HAVE_RMDIR) | ||
| 18 | (HAVE_STRERROR, strerror): | ||
| 19 | Remove. | ||
| 20 | |||
| 21 | 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 22 | |||
| 23 | * coccinelle/list_loop.cocci: Semantic patch to convert from Fcdr | ||
| 24 | to XCDR and consistently use CONSP in the list iteration loops. | ||
| 25 | * coccinelle/vector_contents.cocci: Fix indentation. | ||
| 26 | |||
| 27 | 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 28 | |||
| 29 | * bzrmerge.el: Use cl-lib. | ||
| 30 | |||
| 31 | 2012-07-09 Paul Eggert <eggert@cs.ucla.edu> | ||
| 32 | |||
| 33 | Rename configure.in to configure.ac (Bug#11603). | ||
| 34 | * admin.el (set-version): | ||
| 35 | * quick-install-emacs (VERSION): | ||
| 36 | Get version number from configure.ac, not configure.in. | ||
| 37 | |||
| 38 | 2012-07-06 Paul Eggert <eggert@cs.ucla.edu> | ||
| 39 | |||
| 40 | Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786). | ||
| 41 | * merge-gnulib (GNULIB_MODULES): Add c-strcase. | ||
| 42 | |||
| 43 | 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 44 | |||
| 45 | * coccinelle/xzalloc.cocci: Semantic patch to convert | ||
| 46 | calls to xmalloc with following memset to xzalloc. | ||
| 47 | |||
| 48 | 2012-07-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 49 | |||
| 50 | * CPP-DEFINES (LISP_FLOAT_TYPE): Remove, obsolete. | ||
| 51 | |||
| 52 | 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 53 | |||
| 54 | * coccinelle/build_string.cocci: Semantic patch | ||
| 55 | to convert from make_string to build_string. | ||
| 56 | |||
| 57 | 2012-06-24 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 58 | |||
| 59 | First Coccinelle semantic patch. | ||
| 60 | * coccinelle: New subdirectory | ||
| 61 | * coccinelle/README: Documentation stub. | ||
| 62 | * coccinelle/vector_contents.cocci: Semantic patch to replace direct | ||
| 63 | access to `contents' member of Lisp_Vector objects with AREF and ASET | ||
| 64 | where appropriate. | ||
| 65 | |||
| 66 | 2012-06-22 Paul Eggert <eggert@cs.ucla.edu> | ||
| 67 | |||
| 68 | Support higher-resolution time stamps (Bug#9000). | ||
| 69 | * merge-gnulib (GNULIB_MODULES): Add dtotimespec, gettime, | ||
| 70 | gettimeofday, pselect, stat-time, sys_time, time, timespec-add, | ||
| 71 | timespec-sub, utimens. | ||
| 72 | (GNULIB_TOOL_FLAGS): Add --avoid=select --avoid=sigprocmask. | ||
| 73 | This trims down the gnulib import, from the very latest gnulib. | ||
| 74 | Emacs does its own implementation of 'select' and 'sigprocmask' | ||
| 75 | on Windows, and it assumes 'select' and 'sigprocmask' on non-Windows | ||
| 76 | hosts, so it doesn't need these modules. | ||
| 77 | Similarly, avoid errno, fcntl, fcntl-h, fstat, and sys_types, as | ||
| 78 | these gnulib modules are only for Windows porting and Emacs ports | ||
| 79 | to Windows in a different way. | ||
| 80 | |||
| 1 | 2012-06-13 Andreas Schwab <schwab@linux-m68k.org> | 81 | 2012-06-13 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 82 | ||
| 3 | * make-emacs: Rename --union-type to --check-lisp-type. Define | 83 | * make-emacs: Rename --union-type to --check-lisp-type. |
| 4 | CHECK_LISP_OBJECT_TYPE insted of USE_LISP_UNION_TYPE. | 84 | Define CHECK_LISP_OBJECT_TYPE insted of USE_LISP_UNION_TYPE. |
| 5 | * CPP-DEFINES (DEBUG_LISP_OBJECT_TYPE): Renamed from | 85 | * CPP-DEFINES (DEBUG_LISP_OBJECT_TYPE): Rename from |
| 6 | USE_LISP_UNION_TYPE. | 86 | USE_LISP_UNION_TYPE. |
| 7 | 87 | ||
| 8 | 2012-06-03 Glenn Morris <rgm@gnu.org> | 88 | 2012-06-03 Glenn Morris <rgm@gnu.org> |
| @@ -173,11 +253,11 @@ | |||
| 173 | 253 | ||
| 174 | * unidata/makefile.w32-in (all): Remove src/biditype.h and | 254 | * unidata/makefile.w32-in (all): Remove src/biditype.h and |
| 175 | src/bidimirror.h. | 255 | src/bidimirror.h. |
| 176 | (../../src/biditype.h, ../../src/bidimirror.h): Deleted. | 256 | (../../src/biditype.h, ../../src/bidimirror.h): Delete. |
| 177 | 257 | ||
| 178 | * unidata/Makefile.in (all): Remove src/biditype.h and | 258 | * unidata/Makefile.in (all): Remove src/biditype.h and |
| 179 | src/bidimirror.h. | 259 | src/bidimirror.h. |
| 180 | (../../src/biditype.h, ../../src/bidimirror.h): Deleted. | 260 | (../../src/biditype.h, ../../src/bidimirror.h): Delete. |
| 181 | 261 | ||
| 182 | 2011-07-07 Juanma Barranquero <lekktu@gmail.com> | 262 | 2011-07-07 Juanma Barranquero <lekktu@gmail.com> |
| 183 | 263 | ||
| @@ -188,8 +268,8 @@ | |||
| 188 | 268 | ||
| 189 | * unidata/unidata-gen.el (unidata-dir): New variable. | 269 | * unidata/unidata-gen.el (unidata-dir): New variable. |
| 190 | (unidata-setup-list): Expand unidata-text-file in unidata-dir. | 270 | (unidata-setup-list): Expand unidata-text-file in unidata-dir. |
| 191 | (unidata-prop-alist): INDEX element may be a function. New | 271 | (unidata-prop-alist): INDEX element may be a function. |
| 192 | optional element VAL-LIST (for general-category and bidi-class). | 272 | New optional element VAL-LIST (for general-category and bidi-class). |
| 193 | New entry `mirroring'. | 273 | New entry `mirroring'. |
| 194 | (unidata-prop-default, unidata-prop-val-list): New subst. | 274 | (unidata-prop-default, unidata-prop-val-list): New subst. |
| 195 | (unidata-get-character, unidata-put-character): Delete them. | 275 | (unidata-get-character, unidata-put-character): Delete them. |
| @@ -545,13 +625,13 @@ | |||
| 545 | 625 | ||
| 546 | 2009-04-17 Kenichi Handa <handa@m17n.org> | 626 | 2009-04-17 Kenichi Handa <handa@m17n.org> |
| 547 | 627 | ||
| 548 | * unidata/unidata-gen.el (unidata-get-decomposition): Adjust | 628 | * unidata/unidata-gen.el (unidata-get-decomposition): |
| 549 | Hangle decomposition rule to Unicode. | 629 | Adjust Hangle decomposition rule to Unicode. |
| 550 | 630 | ||
| 551 | 2009-04-09 Kenichi Handa <handa@m17n.org> | 631 | 2009-04-09 Kenichi Handa <handa@m17n.org> |
| 552 | 632 | ||
| 553 | * unidata/unidata-gen.el (unidata-describe-decomposition): Return | 633 | * unidata/unidata-gen.el (unidata-describe-decomposition): |
| 554 | a string with a composition property to disable combining | 634 | Return a string with a composition property to disable combining |
| 555 | characters being composed. | 635 | characters being composed. |
| 556 | 636 | ||
| 557 | 2009-03-11 Miles Bader <miles@gnu.org> | 637 | 2009-03-11 Miles Bader <miles@gnu.org> |
| @@ -564,7 +644,7 @@ | |||
| 564 | 644 | ||
| 565 | 2009-02-23 Jason Rumney <jasonr@gnu.org> | 645 | 2009-02-23 Jason Rumney <jasonr@gnu.org> |
| 566 | 646 | ||
| 567 | * nt/README-ftp-server: Update for 23.0.91 | 647 | * nt/README-ftp-server: Update for 23.0.91. |
| 568 | 648 | ||
| 569 | * nt/README.W32: Remove ever expanding versions of Windows. | 649 | * nt/README.W32: Remove ever expanding versions of Windows. |
| 570 | Shorten FAQ URL. Remove mention of obsolete lock directory. | 650 | Shorten FAQ URL. Remove mention of obsolete lock directory. |
| @@ -1046,7 +1126,7 @@ | |||
| 1046 | 1126 | ||
| 1047 | 2005-10-17 Bill Wohler <wohler@newt.com> | 1127 | 2005-10-17 Bill Wohler <wohler@newt.com> |
| 1048 | 1128 | ||
| 1049 | * FOR-RELEASE (DOCUMENTATION): Removed lisp/toolbar from list | 1129 | * FOR-RELEASE (DOCUMENTATION): Remove lisp/toolbar from list |
| 1050 | since it's gone. Also marked mh-e as done. | 1130 | since it's gone. Also marked mh-e as done. |
| 1051 | 1131 | ||
| 1052 | 2005-10-11 Juanma Barranquero <lekktu@gmail.com> | 1132 | 2005-10-11 Juanma Barranquero <lekktu@gmail.com> |
| @@ -1093,7 +1173,7 @@ | |||
| 1093 | 1173 | ||
| 1094 | 2005-03-30 Marcelo Toledo <marcelo@marcelotoledo.org> | 1174 | 2005-03-30 Marcelo Toledo <marcelo@marcelotoledo.org> |
| 1095 | 1175 | ||
| 1096 | * FOR-RELEASE (Documentation): Added check the Emacs Tutorial. | 1176 | * FOR-RELEASE (Documentation): Add check the Emacs Tutorial. |
| 1097 | The first line of every tutorial must begin with a sentence saying | 1177 | The first line of every tutorial must begin with a sentence saying |
| 1098 | "Emacs Tutorial" in the respective language. This should be | 1178 | "Emacs Tutorial" in the respective language. This should be |
| 1099 | followed by "See end for copying conditions", likewise in the | 1179 | followed by "See end for copying conditions", likewise in the |