Changeset 4091 for trunk/etc/NEWS

Show
Ignore:
Timestamp:
05/27/06 10:35:24 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/etc/NEWS

    r4079 r4091  
    1 GNU Emacs NEWS -- history of user-visible changes.  2003-05-21 
     1GNU Emacs NEWS -- history of user-visible changes.  2006-05-21 
    22Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 
    33          Free Software Foundation, Inc. 
     
    7171Type `C-u C-h t' to choose one of them in case your language setup 
    7272doesn't automatically select the right one. 
     73 
     74--- 
     75** A Portuguese translation of Emacs' reference card has been added. 
     76Its name is `pt-br-refcard.tex'.  The corresponding PostScript file is 
     77also included. 
     78 
    7379 
    7480--- 
     
    754760*** New user option `history-delete-duplicates'. 
    755761If set to t when adding a new history element, all previous identical 
    756 elements are deleted
     762elements are deleted from the history list
    757763 
    758764** Redisplay changes: 
     
    12941300 
    12951301+++ 
     1302*** The Dired command `dired-goto-file' is now bound to j, not M-g. 
     1303This is to avoid hiding the global key binding of M-g. 
     1304 
     1305+++ 
    12961306*** In Dired's ! command (dired-do-shell-command), `*' and `?' now 
    12971307control substitution of the file names only when they are surrounded 
     
    13021312 
    13031313+++ 
    1304 *** In Dired, the w command now copies the current line's file name 
    1305 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 
     1315into the kill ring.  With a zero prefix arg, it stores the absolute file name
    13061316 
    13071317+++ 
     
    19831993 
    19841994--- 
    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. 
    19861998 
    19871999The former two couldn't be differentiated before, and the latter three 
    19882000are new.  Font-locking is robust now and offers new customizable 
    19892001faces. 
     2002 
     2003*** The variable `makefile-query-one-target-method' has been renamed 
     2004to `makefile-query-one-target-method-function'.  The old name is still 
     2005available as alias. 
    19902006 
    19912007+++ 
     
    26042620from the file name or buffer contents. 
    26052621 
     2622*** The variable `sgml-transformation' has been renamed to 
     2623`sgml-transformation-function'.  The old name is still available as 
     2624alias. 
     2625 
    26062626+++ 
    26072627*** `xml-mode' is now an alias for `sgml-mode', which has XML support. 
     
    26802700`bibtex-autokey-titleword-case-convert-function'. The old names are 
    26812701still available as aliases. 
     2702 
     2703** In Artist mode the variable `artist-text-renderer' has been 
     2704renamed to `artist-text-renderer-function'.  The old name is still 
     2705available as alias. 
    26822706 
    26832707+++ 
     
    32923316 
    32933317--- 
    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. 
    32953321 
    32963322`@' has reverted to only setting `skeleton-positions' and no longer 
     
    32993325updated `skeleton-insert' docstring explains these new features along 
    33003326with 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 
     3332as aliases. 
    33013333 
    33023334--- 
     
    35263558* Incompatible Lisp Changes in Emacs 22.1 
    35273559 
     3560** The function find-operation-coding-system accepts a cons (FILENAME 
     3561. BUFFER) in an argument correponding to the target. 
     3562 
    35283563--- 
    35293564** The variables post-command-idle-hook and post-command-idle-delay have 
     
    35563591** The variable `memory-full' now remains t until 
    35573592there is no longer a shortage of memory. 
     3593 
     3594** The ewoc package no longer inserts a newline after each pretty-printed 
     3595entry and after the header and footer, to allow for multiple-entry ewocs to 
     3596display on a single line. 
     3597 
     3598To make pre-existing client code behave the same way as before, you must 
     3599arrange to insert a newline in three places: the pretty-printer function, 
     3600the header and the footer.  It is anyway a good idea to specify a non-empty 
     3601footer so that markers after the ewoc's buffer text are properly updated. 
     3602For 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 
    35583612  
    35593613* Lisp Changes in Emacs 22.1 
     
    43004354 
    43014355+++ 
    4302 *** `read-from-minibuffer' now accepts an additional argument KEEP-ALL 
    4303 saying to put all inputs in the history list, even empty ones. 
    4304  
    4305 +++ 
    43064356*** The `read-file-name' function now takes an additional argument which 
    43074357specifies a predicate which the file name read must satisfy.  The 
     
    71097159 
    71107160*** 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 
     7164alias. 
    71117165 
    71127166** Makefile mode changes 
     
    76627716`(msb-mode 1)'. 
    76637717 
    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 
    76657721group. 
     7722 
     7723*** The variable `flyspell-generic-check-word-p' has been renamed 
     7724to `flyspell-generic-check-word-predicate'.  The old name is still 
     7725available as alias. 
    76667726 
    76677727** The user option `backward-delete-char-untabify-method' controls the