Changeset 4091 for trunk/etc/NEWS
- Timestamp:
- 05/27/06 10:35:24 (2 years ago)
- Files:
-
- trunk/etc/NEWS (modified) (15 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/etc/NEWS
r4079 r4091 1 GNU Emacs NEWS -- history of user-visible changes. 200 3-05-211 GNU Emacs NEWS -- history of user-visible changes. 2006-05-21 2 2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 3 3 Free Software Foundation, Inc. … … 71 71 Type `C-u C-h t' to choose one of them in case your language setup 72 72 doesn't automatically select the right one. 73 74 --- 75 ** A Portuguese translation of Emacs' reference card has been added. 76 Its name is `pt-br-refcard.tex'. The corresponding PostScript file is 77 also included. 78 73 79 74 80 --- … … 754 760 *** New user option `history-delete-duplicates'. 755 761 If set to t when adding a new history element, all previous identical 756 elements are deleted .762 elements are deleted from the history list. 757 763 758 764 ** Redisplay changes: … … 1294 1300 1295 1301 +++ 1302 *** The Dired command `dired-goto-file' is now bound to j, not M-g. 1303 This is to avoid hiding the global key binding of M-g. 1304 1305 +++ 1296 1306 *** In Dired's ! command (dired-do-shell-command), `*' and `?' now 1297 1307 control substitution of the file names only when they are surrounded … … 1302 1312 1303 1313 +++ 1304 *** In Dired, the w command now copies the current line's file name1305 into the kill ring. With a zero prefix arg, copies absolute file names.1314 *** In Dired, the w command now stores the current line's file name 1315 into the kill ring. With a zero prefix arg, it stores the absolute file name. 1306 1316 1307 1317 +++ … … 1983 1993 1984 1994 --- 1985 ** Makefile mode has submodes for automake, gmake, makepp, BSD make and imake. 1995 ** Changes in Makefile mode 1996 1997 *** Makefile mode has submodes for automake, gmake, makepp, BSD make and imake. 1986 1998 1987 1999 The former two couldn't be differentiated before, and the latter three 1988 2000 are new. Font-locking is robust now and offers new customizable 1989 2001 faces. 2002 2003 *** The variable `makefile-query-one-target-method' has been renamed 2004 to `makefile-query-one-target-method-function'. The old name is still 2005 available as alias. 1990 2006 1991 2007 +++ … … 2604 2620 from the file name or buffer contents. 2605 2621 2622 *** The variable `sgml-transformation' has been renamed to 2623 `sgml-transformation-function'. The old name is still available as 2624 alias. 2625 2606 2626 +++ 2607 2627 *** `xml-mode' is now an alias for `sgml-mode', which has XML support. … … 2680 2700 `bibtex-autokey-titleword-case-convert-function'. The old names are 2681 2701 still available as aliases. 2702 2703 ** In Artist mode the variable `artist-text-renderer' has been 2704 renamed to `artist-text-renderer-function'. The old name is still 2705 available as alias. 2682 2706 2683 2707 +++ … … 3292 3316 3293 3317 --- 3294 ** In skeleton.el, `-' marks the `skeleton-point' without interregion interaction. 3318 ** Changes in Skeleton 3319 3320 *** In skeleton.el, `-' marks the `skeleton-point' without interregion interaction. 3295 3321 3296 3322 `@' has reverted to only setting `skeleton-positions' and no longer … … 3299 3325 updated `skeleton-insert' docstring explains these new features along 3300 3326 with other details of skeleton construction. 3327 3328 *** The variables `skeleton-transformation', `skeleton-filter', and 3329 `skeleton-pair-filter' have been renamed to 3330 `skeleton-transformation-function', `skeleton-filter-function', and 3331 `skeleton-pair-filter-function'. The old names are still available 3332 as aliases. 3301 3333 3302 3334 --- … … 3526 3558 * Incompatible Lisp Changes in Emacs 22.1 3527 3559 3560 ** The function find-operation-coding-system accepts a cons (FILENAME 3561 . BUFFER) in an argument correponding to the target. 3562 3528 3563 --- 3529 3564 ** The variables post-command-idle-hook and post-command-idle-delay have … … 3556 3591 ** The variable `memory-full' now remains t until 3557 3592 there is no longer a shortage of memory. 3593 3594 ** The ewoc package no longer inserts a newline after each pretty-printed 3595 entry and after the header and footer, to allow for multiple-entry ewocs to 3596 display on a single line. 3597 3598 To make pre-existing client code behave the same way as before, you must 3599 arrange to insert a newline in three places: the pretty-printer function, 3600 the header and the footer. It is anyway a good idea to specify a non-empty 3601 footer so that markers after the ewoc's buffer text are properly updated. 3602 For example: 3603 3604 ;; before 3605 (defun PP (data) (insert (format "%S" data))) 3606 (ewoc-create 'PP "start\n") 3607 3608 ;; now 3609 (defun PP (data) (insert (format "%S\n" data))) 3610 (ewoc-create 'PP "start\n\n" "\n") 3611 3558 3612 3559 3613 * Lisp Changes in Emacs 22.1 … … 4300 4354 4301 4355 +++ 4302 *** `read-from-minibuffer' now accepts an additional argument KEEP-ALL4303 saying to put all inputs in the history list, even empty ones.4304 4305 +++4306 4356 *** The `read-file-name' function now takes an additional argument which 4307 4357 specifies a predicate which the file name read must satisfy. The … … 7109 7159 7110 7160 *** Spell checking now works in the MS-DOS version of Emacs. 7161 7162 *** The variable `ispell-format-word' has been renamed to 7163 `ispell-format-word-function'. The old name is still available as 7164 alias. 7111 7165 7112 7166 ** Makefile mode changes … … 7662 7716 `(msb-mode 1)'. 7663 7717 7664 ** Flyspell mode has various new options. See the `flyspell' Custom 7718 ** Changes in Flyspell mode 7719 7720 *** Flyspell mode has various new options. See the `flyspell' Custom 7665 7721 group. 7722 7723 *** The variable `flyspell-generic-check-word-p' has been renamed 7724 to `flyspell-generic-check-word-predicate'. The old name is still 7725 available as alias. 7666 7726 7667 7727 ** The user option `backward-delete-char-untabify-method' controls the
