diff options
Diffstat (limited to 'admin/ChangeLog')
| -rw-r--r-- | admin/ChangeLog | 458 |
1 files changed, 449 insertions, 9 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index 28e25ad98a3..f27a03af773 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,440 @@ | |||
| 1 | 2014-02-06 David Engster <deng@randomsample.de> | ||
| 2 | |||
| 3 | * grammars/c.by (function-pointer): Correctly deal with anonymous | ||
| 4 | function pointers. | ||
| 5 | (opt-brackets-after-symbol): New. | ||
| 6 | (multi-stage-dereference): Use it. Add rules for explicit | ||
| 7 | matching the last dereference. | ||
| 8 | |||
| 9 | 2014-01-16 Eric S. Raymond <esr@thyrsus.com> | ||
| 10 | |||
| 11 | * notes/commits: Add a 'graph on VCS-independent ways of | ||
| 12 | identifying commits and the desirability thereof. | ||
| 13 | |||
| 14 | 2014-01-15 Paul Eggert <eggert@cs.ucla.edu> | ||
| 15 | |||
| 16 | Fix copyright license notices for Adobe Unicode mapping files. | ||
| 17 | * charsets/mapfiles/README: The copied files are not compressed. | ||
| 18 | Check for copies as of today. | ||
| 19 | * charsets/mapfiles/stdenc.txt, charsets/mapfiles/symbol.txt: | ||
| 20 | Update from table version 0.2 (1999-03-30) to 1.0 (2011-07-12). | ||
| 21 | This doesn't change the table data, just copyright license notice. | ||
| 22 | The new notices are compatible with the GPL, the old ones were not. | ||
| 23 | |||
| 24 | 2014-01-13 Glenn Morris <rgm@gnu.org> | ||
| 25 | |||
| 26 | * update_autogen (status): New function. Use throughout. | ||
| 27 | |||
| 28 | 2014-01-10 Glenn Morris <rgm@gnu.org> | ||
| 29 | |||
| 30 | * update_autogen: Fix sed bug that was losing the last AUTOGEN_VCS. | ||
| 31 | |||
| 32 | 2014-01-04 Glenn Morris <rgm@gnu.org> | ||
| 33 | |||
| 34 | * admin.el (manual-html-fix-node-div): Handle Texinfo 5's movable <hr>. | ||
| 35 | (manual-html-fix-index-2): Tweak Texinfo 5 table format. | ||
| 36 | Fix minor Texinfo 4 issue with start of detailed menu. | ||
| 37 | |||
| 38 | 2014-01-03 Glenn Morris <rgm@gnu.org> | ||
| 39 | |||
| 40 | * admin.el: More Texinfo 5 updates. | ||
| 41 | (manual-html-fix-headers): Tweak Texinfo 5 body. | ||
| 42 | (manual-html-fix-node-div): Treat "header" like "node". | ||
| 43 | (manual-html-fix-index-1): Handle Texinfo 5 top heading. | ||
| 44 | (manual-html-fix-index-2): Tweak Texinfo 5 listing tables. | ||
| 45 | |||
| 46 | 2014-01-02 Xue Fuqiao <xfq.free@gmail.com> | ||
| 47 | |||
| 48 | * check-doc-strings: Replace `perl -w' with `use warnings;'. | ||
| 49 | |||
| 50 | 2013-12-30 Glenn Morris <rgm@gnu.org> | ||
| 51 | |||
| 52 | * admin.el (manual-html-fix-headers, manual-html-fix-index-1): | ||
| 53 | Some updates for changes in Texinfo 5 output. | ||
| 54 | |||
| 55 | 2013-12-29 Xue Fuqiao <xfq.free@gmail.com> | ||
| 56 | |||
| 57 | * make-emacs: | ||
| 58 | * build-configs: Add the "use strict;" and "use warnings;" pragmas. | ||
| 59 | |||
| 60 | 2013-12-28 Glenn Morris <rgm@gnu.org> | ||
| 61 | |||
| 62 | * admin.el (cusver-scan): Warn about missing :types. | ||
| 63 | (cusver-check): Interactively, require existing directories. | ||
| 64 | |||
| 65 | 2013-12-27 Xue Fuqiao <xfq.free@gmail.com> | ||
| 66 | |||
| 67 | * admin.el (manual-misc-manuals, make-manuals): | ||
| 68 | (manual-pdf, cusver-find-files): | ||
| 69 | (cusver-new-version, cusver-scan, cusver-goto-xref): | ||
| 70 | (cusver-check): Doc fix. | ||
| 71 | (manual-html-node, cusver-check): Use `user-error'. | ||
| 72 | |||
| 73 | 2013-12-24 Paul Eggert <eggert@cs.ucla.edu> | ||
| 74 | |||
| 75 | Automate the procedure for updating copyright year. | ||
| 76 | * merge-gnulib (GNULIB_MODULES): Add update-copyright. | ||
| 77 | * notes/years: Mention admin/update-copyright. | ||
| 78 | * update-copyright: New file. | ||
| 79 | |||
| 80 | 2013-12-24 Xue Fuqiao <xfq.free@gmail.com> | ||
| 81 | |||
| 82 | * admin.el (add-release-logs): | ||
| 83 | (set-version-in-file, set-version, set-copyright): | ||
| 84 | Use `user-error'. | ||
| 85 | |||
| 86 | 2013-12-22 Eli Zaretskii <eliz@gnu.org> | ||
| 87 | |||
| 88 | * unidata/unidata-gen.el (unidata-split-name): Don't give any NAME | ||
| 89 | to <control> characters: the Unicode Standard says they have no | ||
| 90 | name. (Bug#16216) | ||
| 91 | (unidata-describe-bidi-class): Add new "isolate" classes | ||
| 92 | introduced by Unicode 6.3. | ||
| 93 | |||
| 94 | 2013-12-12 David Engster <deng@randomsample.de> | ||
| 95 | |||
| 96 | * grammars/c.by (expr-binop): Add MOD. | ||
| 97 | (variablearg): Add 'opt-assign'. | ||
| 98 | (variablearg, varnamelist): Add default values so that it can be | ||
| 99 | later expanded into the tag. | ||
| 100 | (opt-stuff-after-symbol): Rename to 'brackets-after-symbol' and | ||
| 101 | remove empty match. | ||
| 102 | (multi-stage-dereference): Adapt to above rename. | ||
| 103 | (unaryexpression): Use 'symbol' instead of 'namespace-symbol', | ||
| 104 | since the latter also leads to an empty match at the end which | ||
| 105 | would make this too greedy. | ||
| 106 | (variablearg-opt-name): Support parsing of function pointers | ||
| 107 | inside an argument list. | ||
| 108 | |||
| 109 | 2013-12-12 Glenn Morris <rgm@gnu.org> | ||
| 110 | |||
| 111 | * update_autogen (info_dir): | ||
| 112 | Use dir_top from build-aux/ rather than admin/. | ||
| 113 | |||
| 114 | * update_autogen: Add option to generate info/dir. | ||
| 115 | (Usage): Add -I. | ||
| 116 | (info_flag): New variable. | ||
| 117 | (-I): New option. | ||
| 118 | (doc): Maybe check its status. | ||
| 119 | (info_dir): New function. | ||
| 120 | * dir_top: New file. | ||
| 121 | |||
| 122 | 2013-12-11 Paul Eggert <eggert@cs.ucla.edu> | ||
| 123 | |||
| 124 | Remove the option of using libcrypto. | ||
| 125 | * merge-gnulib: Remove lib/gl_openssh.h and m4/gl-openssl.m4. | ||
| 126 | |||
| 127 | 2013-12-04 Eli Zaretskii <eliz@gnu.org> | ||
| 128 | |||
| 129 | * unidata/unidata-gen.el (unidata-prop-alist): Update bidi-class | ||
| 130 | to include the new isolate-related classes introduced with Unicode | ||
| 131 | v6.3. | ||
| 132 | (unidata-encode-val): Accept an additional optional argument, a | ||
| 133 | warning message to emit when UnicodeData.txt defines bidi-class | ||
| 134 | values that are not in unidata-prop-alist. Add a comment | ||
| 135 | explaining what should maintainers do if/when such a warning ever | ||
| 136 | appears. | ||
| 137 | (unidata-gen-table): Call unidata-encode-val with 3rd arg non-nil | ||
| 138 | when generating uni-bidi.el. | ||
| 139 | |||
| 140 | 2013-12-01 Glenn Morris <rgm@gnu.org> | ||
| 141 | |||
| 142 | * unidata/Makefile.in (${DSTDIR}/charprop.el): | ||
| 143 | Ensure output files are writable. | ||
| 144 | |||
| 145 | 2013-11-30 Glenn Morris <rgm@gnu.org> | ||
| 146 | |||
| 147 | * grammars/Makefile.in: Ensure output files are writable. | ||
| 148 | |||
| 149 | 2013-11-30 Eli Zaretskii <eliz@gnu.org> | ||
| 150 | |||
| 151 | * charsets/mule-charsets.el: Rewritten to work in Emacs 23 and | ||
| 152 | later. (Bug#16007) | ||
| 153 | |||
| 154 | 2013-11-30 Glenn Morris <rgm@gnu.org> | ||
| 155 | |||
| 156 | Stop keeping (most) generated cedet grammar files in the repository. | ||
| 157 | * grammars/README: Remove. | ||
| 158 | * grammars/Makefile.in: New file. | ||
| 159 | * grammars/c.by, grammars/java-tags.wy, grammars/js.wy: | ||
| 160 | * grammars/python.wy: Update declarations to match generated outputs. | ||
| 161 | |||
| 162 | 2013-11-28 Glenn Morris <rgm@gnu.org> | ||
| 163 | |||
| 164 | * unidata/unidata-gen.el (unidata-gen-files): | ||
| 165 | Disable autoloads in generated files. | ||
| 166 | |||
| 167 | 2013-11-27 Glenn Morris <rgm@gnu.org> | ||
| 168 | |||
| 169 | * unidata/Makefile.in (all, install, clean, bootstrap-clean) | ||
| 170 | (distclean, maintainer-clean): Declare as PHONY. | ||
| 171 | (compile, extraclean): New. | ||
| 172 | (${DSTDIR}/charprop.el): Depend on source files rather than | ||
| 173 | intermediate products. | ||
| 174 | |||
| 175 | 2013-11-11 Glenn Morris <rgm@gnu.org> | ||
| 176 | |||
| 177 | * unidata/BidiMirroring.txt, unidata/UnicodeData.txt: Update to 6.3.0. | ||
| 178 | |||
| 179 | * unidata/unidata-gen.el (unidata-gen-files): | ||
| 180 | Tweak whitespace in generated files. | ||
| 181 | |||
| 182 | 2013-11-09 Glenn Morris <rgm@gnu.org> | ||
| 183 | |||
| 184 | * unidata/unidata-gen.el (unidata-gen-files): | ||
| 185 | Fix deletion of existing output files after 2013-10-30 changes. | ||
| 186 | |||
| 187 | 2013-11-07 Glenn Morris <rgm@gnu.org> | ||
| 188 | |||
| 189 | * unidata/unidata-gen.el (unidata-gen-files): | ||
| 190 | Disable version-control in generated files. | ||
| 191 | Update Unicode Inc. copyright years. | ||
| 192 | |||
| 193 | 2013-11-05 Glenn Morris <rgm@gnu.org> | ||
| 194 | |||
| 195 | * update_autogen: Move here from ../autogen. | ||
| 196 | (usage): Update. Remove -l, add -A. | ||
| 197 | (autogendir): New variable. | ||
| 198 | (ldefs_flag): Default to set. | ||
| 199 | (genfiles): Reduce to only ms-dos relevant files. | ||
| 200 | (main): Make checking autogen sources optional. | ||
| 201 | Make copying of autogen files optional. | ||
| 202 | |||
| 203 | 2013-10-30 Glenn Morris <rgm@gnu.org> | ||
| 204 | |||
| 205 | * unidata/unidata-gen.el (unidata-gen-files): Use pop. | ||
| 206 | Also take the output directory as an argument. | ||
| 207 | * unidata/Makefile.in: Simplify now that unidata-gen-files takes | ||
| 208 | the output directory as an argument (no need to cd, etc). | ||
| 209 | (abs_srcdir, abs_builddir): Remove. | ||
| 210 | (abs_top_builddir): Replace by top_builddir. | ||
| 211 | (${DSTDIR}/charprop.el): No need to cd. Pass dest as argument. | ||
| 212 | (${DSTDIR}/charprop.el, charprop.el): | ||
| 213 | No need to pass unidata.txt as argument. | ||
| 214 | |||
| 215 | * unidata/unidata-gen.el (unidata--ensure-compiled): New function. | ||
| 216 | (unidata-gen-table-name, unidata-gen-table-decomposition) | ||
| 217 | (unidata-gen-files): Use unidata--ensure-compiled. | ||
| 218 | |||
| 219 | * unidata/Makefile.in (abs_srcdir): New, set by configure. | ||
| 220 | (${DSTDIR}/charprop.el, charprop.el): Update for srcdir not absolute. | ||
| 221 | (clean): Delete all .elc files. | ||
| 222 | (bootstrap-clean): New rule. | ||
| 223 | |||
| 224 | 2013-10-23 Glenn Morris <rgm@gnu.org> | ||
| 225 | |||
| 226 | * unidata/Makefile.in (emacs, ${DSTDIR}/charprop.el): | ||
| 227 | Quote entities that might contain whitespace. | ||
| 228 | |||
| 229 | 2013-10-07 Paul Eggert <eggert@cs.ucla.edu> | ||
| 230 | |||
| 231 | Improve support for popcount and counting trailing zeros (Bug#15550). | ||
| 232 | * merge-gnulib (GNULIB_MODULES): Add count-one-bits | ||
| 233 | and count-trailing-zeros. | ||
| 234 | |||
| 235 | 2013-10-04 Paul Eggert <eggert@cs.ucla.edu> | ||
| 236 | |||
| 237 | Use hardware support for byteswapping on glibc x86 etc. | ||
| 238 | * merge-gnulib (GNULIB_MODULES): Add byteswap. | ||
| 239 | |||
| 240 | 2013-08-28 Paul Eggert <eggert@cs.ucla.edu> | ||
| 241 | |||
| 242 | * unidata/Makefile.in (SHELL): Now @SHELL@, not /bin/sh, | ||
| 243 | for portability to hosts where /bin/sh has problems. | ||
| 244 | |||
| 245 | 2013-08-27 Glenn Morris <rgm@gnu.org> | ||
| 246 | |||
| 247 | * admin.el (manual-misc-manuals): Use INFO_COMMON rather than | ||
| 248 | INFO_TARGETS. "faq" does not need special treatment any more. | ||
| 249 | |||
| 250 | 2013-08-15 Glenn Morris <rgm@gnu.org> | ||
| 251 | |||
| 252 | * make-tarball.txt: Mention generating pdfs in etc/refcards. | ||
| 253 | |||
| 254 | 2013-08-15 Xue Fuqiao <xfq.free@gmail.com> | ||
| 255 | |||
| 256 | * notes/hydra: More information about Hydra. | ||
| 257 | |||
| 258 | 2013-08-10 Xue Fuqiao <xfq.free@gmail.com> | ||
| 259 | |||
| 260 | * notes/hydra: New file. | ||
| 261 | |||
| 262 | 2013-08-04 Paul Eggert <eggert@cs.ucla.edu> | ||
| 263 | |||
| 264 | Fix some minor races in hosts lacking mkostemp (Bug#15015). | ||
| 265 | * merge-gnulib (GNULIB_MODULES): Add mkostemp. | ||
| 266 | |||
| 267 | 2013-07-12 Glenn Morris <rgm@gnu.org> | ||
| 268 | |||
| 269 | * admin.el (manual-style-string): Use non-abbreviated url. | ||
| 270 | |||
| 271 | 2013-07-09 Paul Eggert <eggert@cs.ucla.edu> | ||
| 272 | |||
| 273 | Port recent close-on-exec changes to Cygwin (Bug#14821). | ||
| 274 | * merge-gnulib (GNULIB_TOOL_FLAGS): Don't avoid binary-io. | ||
| 275 | |||
| 276 | Handle error numbers a bit more reliably. | ||
| 277 | * merge-gnulib (GNULIB_MODULES): Remove ignore-value. | ||
| 278 | |||
| 279 | 2013-07-07 Paul Eggert <eggert@cs.ucla.edu> | ||
| 280 | |||
| 281 | Make file descriptors close-on-exec when possible (Bug#14803). | ||
| 282 | * merge-gnulib (GNULIB_MODULES): Add fcntl, pipe2. | ||
| 283 | (GNULIB_TOOL_FLAGS): Avoid binary-io, close. Do not avoid fcntl. | ||
| 284 | |||
| 285 | 2013-07-06 Glenn Morris <rgm@gnu.org> | ||
| 286 | |||
| 287 | * admin.el (manual-misc-manuals): New function. | ||
| 288 | (make-manuals): Avoid hard-coding list of misc manuals. | ||
| 289 | Add the option to only make certain type(s) of output. | ||
| 290 | (manual-misc-html): Special-case ccmode and efaq. | ||
| 291 | (manual-html-mono, manual-html-node, manual-pdf, manual-ps): | ||
| 292 | Move creation of output directory here from make-manuals. | ||
| 293 | (manual-html-fix-index-2): Avoid dynamic reference to `f'. | ||
| 294 | |||
| 295 | 2013-07-05 Glenn Morris <rgm@gnu.org> | ||
| 296 | |||
| 297 | * admin.el (make-manuals): Use a standard location for lispintro. | ||
| 298 | Use a pdf/ subdirectory for pdf versions. | ||
| 299 | |||
| 300 | 2013-06-29 Glenn Morris <rgm@gnu.org> | ||
| 301 | |||
| 302 | * admin.el (make-manuals): Don't bother with txt or dvi any more. | ||
| 303 | (manual-txt): Remove. | ||
| 304 | (manual-pdf): Doc fix. | ||
| 305 | (manual-ps): Rename from manual-dvi. | ||
| 306 | (manual-pdf, manual-ps): Work in the directory with the texi file, | ||
| 307 | so that TeX intermediate files go there rather than to PWD. | ||
| 308 | |||
| 309 | 2013-06-15 Xue Fuqiao <xfq.free@gmail.com> | ||
| 310 | |||
| 311 | * notes/changelogs: Mention trivial changes in Change Log. | ||
| 312 | |||
| 313 | 2013-06-13 Glenn Morris <rgm@gnu.org> | ||
| 314 | |||
| 315 | * admin.el (manual-style-string): Use new file manual.css. | ||
| 316 | |||
| 317 | 2013-06-02 Eric Ludlam <zappo@gnu.org> | ||
| 318 | |||
| 319 | * grammars/srecode-template.wy (variable): Accept a single number | ||
| 320 | as a variable value. Allows the 'priority' to be set to a number. | ||
| 321 | (wisent-srecode-template-lexer): Move number up so it can be created. | ||
| 322 | |||
| 323 | 2013-05-16 Glenn Morris <rgm@gnu.org> | ||
| 324 | |||
| 325 | * cus-test.el (cus-test-cus-load-groups): New function. | ||
| 326 | (cus-test-get-options): Add option to return groups. | ||
| 327 | (cus-test-noloads): Also check custom groups. | ||
| 328 | |||
| 329 | 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 330 | |||
| 331 | * quick-install-emacs: Don't prune DOC-* files a any more. | ||
| 332 | |||
| 333 | 2013-05-14 Glenn Morris <rgm@gnu.org> | ||
| 334 | |||
| 335 | * cus-test.el (cus-test-get-lisp-files): Ignore obsolete/. | ||
| 336 | (cus-test-libs): Fix let-binding of default-directory. | ||
| 337 | (cus-test-noloads): Load all libs for the comparison. | ||
| 338 | |||
| 339 | 2013-05-11 Glenn Morris <rgm@gnu.org> | ||
| 340 | |||
| 341 | * cus-test.el (cus-test-libs-noloads): Add a few more files. | ||
| 342 | (cus-test-load-libs, cus-test-opts): | ||
| 343 | Add option to load more/all Lisp files. | ||
| 344 | (cus-test-get-lisp-files): Ignore .*.el files. | ||
| 345 | |||
| 346 | 2013-05-10 Glenn Morris <rgm@gnu.org> | ||
| 347 | |||
| 348 | * cus-test.el (cus-test-libs-noloads): Add some files. | ||
| 349 | (cus-test-get-lisp-files): New function. | ||
| 350 | (cus-test-libs): Add option to load more/all Lisp files. | ||
| 351 | |||
| 352 | 2013-05-09 Glenn Morris <rgm@gnu.org> | ||
| 353 | |||
| 354 | * cus-test.el: No need to provide bbdb, bbdb-com any more. | ||
| 355 | (cus-test-libs-noloads): Add dunnet in the defvar. | ||
| 356 | (dunnet): Don't always load it. | ||
| 357 | (viper-mode): Only set if interactive. | ||
| 358 | (cus-test-load-custom-loads): Load dunnet if necessary. | ||
| 359 | (cus-test-load-1): New macro, with common code from cus-test-load-libs | ||
| 360 | and cus-test-libs. | ||
| 361 | (cus-test-load-libs, cus-test-libs): Use cus-test-load-1 macro. | ||
| 362 | Update for cus-test-get-autoload-deps changed result. | ||
| 363 | (cus-test-get-autoload-deps): Simplify. Return file names as they | ||
| 364 | appear in loaddefs.el (directory parts are needed now that not all | ||
| 365 | lisp subdirs are in load-path). | ||
| 366 | (cus-test-deps): Explicitly skip dunnet. | ||
| 367 | |||
| 368 | 2013-05-07 Paul Eggert <eggert@cs.ucla.edu> | ||
| 369 | |||
| 370 | Use Gnulib ACL implementation, for benefit of Solaris etc. (Bug#14295) | ||
| 371 | * merge-gnulib (GNULIB_MODULES): Add qacl. | ||
| 372 | (GNULIB_TOOL_FLAGS): Do not avoid errno. | ||
| 373 | |||
| 374 | 2013-04-01 Paul Eggert <eggert@cs.ucla.edu> | ||
| 375 | |||
| 376 | Use UTF-8 for most files with non-ASCII characters (Bug#13936). | ||
| 377 | * notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el) | ||
| 378 | (leim/quail/hanja3.el, leim/quail/symbol-ksc.el): | ||
| 379 | Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8 | ||
| 380 | characters are now encoded in utf-8-emacs, not iso-2022-7bit. | ||
| 381 | |||
| 382 | 2013-03-18 Paul Eggert <eggert@cs.ucla.edu> | ||
| 383 | |||
| 384 | * notes/unicode: Mention some more iso-2022-7bit files (Bug#13936). | ||
| 385 | |||
| 386 | Automate the build of ja-dic.el (Bug#13984). | ||
| 387 | * notes/unicode: ja-dic.el is now UTF-8. | ||
| 388 | |||
| 389 | 2013-03-16 Glenn Morris <rgm@gnu.org> | ||
| 390 | |||
| 391 | * admin.el (manual-pdf, manual-dvi): Pass -I to texi2pdf, texi2dvi. | ||
| 392 | |||
| 393 | 2013-03-16 Glenn Morris <rgm@gnu.org> | ||
| 394 | |||
| 395 | * admin.el (manual-html-mono, manual-html-node): Add -DWWW_GNU_ORG. | ||
| 396 | |||
| 397 | 2013-03-13 Paul Eggert <eggert@cs.ucla.edu> | ||
| 398 | |||
| 399 | File synchronization fixes (Bug#13944). | ||
| 400 | * CPP-DEFINES (BSD_SYSTEM, HAVE_FSYNC): Remove. | ||
| 401 | * merge-gnulib (GNULIB_MODULES): Add fsync, fdatasync. | ||
| 402 | |||
| 403 | 2013-03-11 Paul Eggert <eggert@cs.ucla.edu> | ||
| 404 | |||
| 405 | * notes/unicode: Improve notes about Emacs source file encoding. | ||
| 406 | |||
| 407 | 2013-03-11 Glenn Morris <rgm@gnu.org> | ||
| 408 | |||
| 409 | * admin.el (make-manuals): Add emacs-lisp-intro and some more | ||
| 410 | doc/misc manuals. | ||
| 411 | (manual-html-mono, manual-html-node, manual-txt): | ||
| 412 | Pass -I to makeinfo. | ||
| 413 | |||
| 414 | 2013-03-10 Glenn Morris <rgm@gnu.org> | ||
| 415 | |||
| 416 | * admin.el (add-release-logs): Use UTC for release date. | ||
| 417 | |||
| 418 | 2013-03-09 Glenn Morris <rgm@gnu.org> | ||
| 419 | |||
| 420 | * admin.el (add-release-logs): Provide interactive defaults. | ||
| 421 | Allow specification of the release date. Don't exclude gnus/. | ||
| 422 | |||
| 423 | 2013-03-05 Paul Eggert <eggert@cs.ucla.edu> | ||
| 424 | |||
| 425 | * notes/unicode: Add notes about Emacs source file encoding. | ||
| 426 | |||
| 427 | 2013-03-04 Paul Eggert <eggert@cs.ucla.edu> | ||
| 428 | |||
| 429 | * grammars/java-tags.wy (CHAR): Remove "('\u0000' to '\uffff')" | ||
| 430 | from summary, as this causes javat-wy.el to contain both a null byte | ||
| 431 | and a byte sequence that is not valid UTF-8, which is inconvenient. | ||
| 432 | |||
| 433 | 2013-03-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 434 | |||
| 435 | * bzrmerge.el (bzrmerge-apply): Omit Latin-1 char from diagnostic. | ||
| 436 | If there were a real need, it should be UTF-8 anyway. | ||
| 437 | |||
| 1 | 2013-02-25 Paul Eggert <eggert@cs.ucla.edu> | 438 | 2013-02-25 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 439 | ||
| 3 | Simplify data_start configuration (Bug#13783). | 440 | Simplify data_start configuration (Bug#13783). |
| @@ -29,7 +466,7 @@ | |||
| 29 | 466 | ||
| 30 | 2012-12-14 Paul Eggert <eggert@cs.ucla.edu> | 467 | 2012-12-14 Paul Eggert <eggert@cs.ucla.edu> |
| 31 | 468 | ||
| 32 | Fix permissions bugs with setgid directories etc. (Bug#13125) | 469 | Fix permissions bugs with setgid directories etc. (Bug#13125) |
| 33 | * CPP-DEFINES (BSD4_2): Remove. | 470 | * CPP-DEFINES (BSD4_2): Remove. |
| 34 | 471 | ||
| 35 | 2012-12-08 Paul Eggert <eggert@cs.ucla.edu> | 472 | 2012-12-08 Paul Eggert <eggert@cs.ucla.edu> |
| @@ -145,10 +582,10 @@ | |||
| 145 | (cusver-scan): Check if containing group has a :version. | 582 | (cusver-scan): Check if containing group has a :version. |
| 146 | (cusver-check): Add VERSION argument. | 583 | (cusver-check): Add VERSION argument. |
| 147 | 584 | ||
| 148 | 2012-10-01 David Engster <deng@randomsample.de> | 585 | 2012-10-06 David Engster <deng@randomsample.de> |
| 149 | 586 | ||
| 150 | * grammars/bovine-grammar.el: | 587 | * grammars/bovine-grammar.el: |
| 151 | * grammars/wisent-grammar.el: Move to lisp directory. | 588 | * grammars/wisent-grammar.el: Move to lisp/cedet/semantic directory. |
| 152 | 589 | ||
| 153 | 2012-10-01 David Engster <deng@randomsample.de> | 590 | 2012-10-01 David Engster <deng@randomsample.de> |
| 154 | 591 | ||
| @@ -161,7 +598,7 @@ | |||
| 161 | 598 | ||
| 162 | * grammars/grammar.wy (semantic-grammar-lexer): Remove, since it | 599 | * grammars/grammar.wy (semantic-grammar-lexer): Remove, since it |
| 163 | was copied to grammar.el. New %provide token to generate prefix | 600 | was copied to grammar.el. New %provide token to generate prefix |
| 164 | which conforms with Emacs conventions. Remove lexer definition, | 601 | which conforms with Emacs conventions. Remove lexer definition, |
| 165 | which is now in grammar.el. | 602 | which is now in grammar.el. |
| 166 | 603 | ||
| 167 | 2012-09-27 Glenn Morris <rgm@gnu.org> | 604 | 2012-09-27 Glenn Morris <rgm@gnu.org> |
| @@ -607,6 +1044,10 @@ | |||
| 607 | 1044 | ||
| 608 | * notes/bugtracker (bugtracker_debbugs_url): Fix typo. | 1045 | * notes/bugtracker (bugtracker_debbugs_url): Fix typo. |
| 609 | 1046 | ||
| 1047 | 2011-02-20 Paul Eggert <eggert@cs.ucla.edu> | ||
| 1048 | |||
| 1049 | * notes/copyright: Remove src/md5.c and src/md5.h as special cases. | ||
| 1050 | |||
| 610 | 2011-02-19 Eli Zaretskii <eliz@gnu.org> | 1051 | 2011-02-19 Eli Zaretskii <eliz@gnu.org> |
| 611 | 1052 | ||
| 612 | * admin.el (set-version): Add msdos/sed2v2.inp. | 1053 | * admin.el (set-version): Add msdos/sed2v2.inp. |
| @@ -616,6 +1057,7 @@ | |||
| 616 | Remove no-longer needed getloadavg symbols. | 1057 | Remove no-longer needed getloadavg symbols. |
| 617 | * CPP-DEFINES (LOAD_AVE_CVT, LOAD_AVE_TYPE, FSCALE, KERNEL_FILE): | 1058 | * CPP-DEFINES (LOAD_AVE_CVT, LOAD_AVE_TYPE, FSCALE, KERNEL_FILE): |
| 618 | (LDAV_SYMBOL): Remove. | 1059 | (LDAV_SYMBOL): Remove. |
| 1060 | * notes/copyright: Remove src/getloadavg.c as a special case. | ||
| 619 | 1061 | ||
| 620 | 2011-02-12 Glenn Morris <rgm@gnu.org> | 1062 | 2011-02-12 Glenn Morris <rgm@gnu.org> |
| 621 | 1063 | ||
| @@ -1138,7 +1580,7 @@ | |||
| 1138 | Sub-directory `unidata' is for codes to generate charprop.el and | 1580 | Sub-directory `unidata' is for codes to generate charprop.el and |
| 1139 | many other uni-*.el files from `UnicodeData.txt'. | 1581 | many other uni-*.el files from `UnicodeData.txt'. |
| 1140 | 1582 | ||
| 1141 | * Unidata/README: New file. | 1583 | * unidata/README: New file. |
| 1142 | 1584 | ||
| 1143 | * unidata/Makefile: New file. | 1585 | * unidata/Makefile: New file. |
| 1144 | 1586 | ||
| @@ -1564,8 +2006,6 @@ | |||
| 1564 | emacs.exe before zipping, and including batch file to recreate | 2006 | emacs.exe before zipping, and including batch file to recreate |
| 1565 | after unpacking. | 2007 | after unpacking. |
| 1566 | 2008 | ||
| 1567 | * nt/stitch.bat: New file. | ||
| 1568 | |||
| 1569 | * nt/README-ftp-server: Update wording and version number etc. | 2009 | * nt/README-ftp-server: Update wording and version number etc. |
| 1570 | Add extra instructions for installing multi-file .zip | 2010 | Add extra instructions for installing multi-file .zip |
| 1571 | distribution. | 2011 | distribution. |
| @@ -1685,7 +2125,7 @@ | |||
| 1685 | 2125 | ||
| 1686 | 2001-09-04 Andrew Innes <andrewi@gnu.org> | 2126 | 2001-09-04 Andrew Innes <andrewi@gnu.org> |
| 1687 | 2127 | ||
| 1688 | * admin/nt/makedist.bat: Remove reference to obsolete file | 2128 | * nt/makedist.bat: Remove reference to obsolete file |
| 1689 | GETTING.GNU.SOFTWARE. Remove outdated comments. Explain about | 2129 | GETTING.GNU.SOFTWARE. Remove outdated comments. Explain about |
| 1690 | version of tar used. | 2130 | version of tar used. |
| 1691 | 2131 | ||
| @@ -1693,7 +2133,7 @@ | |||
| 1693 | ;; coding: utf-8 | 2133 | ;; coding: utf-8 |
| 1694 | ;; End: | 2134 | ;; End: |
| 1695 | 2135 | ||
| 1696 | Copyright (C) 2001-2013 Free Software Foundation, Inc. | 2136 | Copyright (C) 2001-2014 Free Software Foundation, Inc. |
| 1697 | 2137 | ||
| 1698 | This file is part of GNU Emacs. | 2138 | This file is part of GNU Emacs. |
| 1699 | 2139 | ||