Show
Ignore:
Timestamp:
2005年11月26日 08時33分26秒 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vendor/emacs-CVS_HEAD/etc/NEWS

    r3939 r3988  
    119119terminfo name, since term.el now supports color. 
    120120 
     121--- 
     122** Emacs Lisp source files are compressed by default if `gzip' is available. 
     123 
    121124  
    122125* Startup Changes in Emacs 22.1 
     
    238241+++ 
    239242** A prefix argument is no longer required to repeat a jump to a 
    240 previous mark, i.e. C-u C-SPC C-SPC C-SPC ... cycles through the 
    241 mark ring.  Use C-u C-u C-SPC to set the mark immediately after a jump. 
     243previous mark if you set `set-mark-command-repeat-pop' to t.  I.e. C-u 
     244C-SPC C-SPC C-SPC ... cycles through the mark ring.  Use C-u C-u C-SPC 
     245to set the mark immediately after a jump. 
    242246 
    243247+++ 
     
    256260of specifying the current directory.  Normally that means to visit the 
    257261directory with Dired. 
     262 
     263You can get the old behavior by typing C-x C-f M-n RET, which fetches 
     264the actual file name into the minibuffer. 
    258265 
    259266+++ 
     
    292299** The max size of buffers and integers has been doubled. 
    293300On 32bit machines, it is now 256M (i.e. 268435455). 
    294  
    295 +++ 
    296 ** M-g is now a prefix key. 
    297 M-g g and M-g M-g run goto-line. 
    298 M-g n and M-g M-n run next-error (like C-x `). 
    299 M-g p and M-g M-p run previous-error. 
    300  
    301 +++ 
    302 ** C-u M-g M-g switches to the most recent previous buffer, 
    303 and goes to the specified line in that buffer. 
    304  
    305 When goto-line starts to execute, if there's a number in the buffer at 
    306 point then it acts as the default argument for the minibuffer. 
    307  
    308 +++ 
    309 ** The old bindings C-M-delete and C-M-backspace have been deleted, 
    310 since there are situations where one or the other will shut down 
    311 the operating system or your X server. 
    312  
    313 +++ 
    314 ** line-move-ignore-invisible now defaults to t. 
    315  
    316 +++ 
    317 ** When the undo information of the current command gets really large 
    318 (beyond the value of `undo-outer-limit'), Emacs discards it and warns 
    319 you about it. 
    320  
    321 +++ 
    322 ** `apply-macro-to-region-lines' now operates on all lines that begin 
    323 in the region, rather than on all complete lines in the region. 
    324301 
    325302+++ 
     
    431408C-h e displays the *Messages* buffer. 
    432409 
     410C-h d runs apropos-documentation. 
     411 
    433412C-h followed by a control character is used for displaying files 
    434413    that do not change: 
     
    441420 
    442421C-h c, C-h k, C-h w, and C-h f now handle remapped interactive commands. 
    443  
    444422- C-h c and C-h k report the actual command (after possible remapping) 
    445423  run by the key sequence. 
    446  
    447424- C-h w and C-h f on a command which has been remapped now report the 
    448425  command it is remapped to, and the keys which can be used to run 
     
    451428For example, if C-k is bound to kill-line, and kill-line is remapped 
    452429to new-kill-line, these commands now report: 
    453  
    454430- C-h c and C-h k C-k reports: 
    455431  C-k runs the command new-kill-line 
    456  
    457432- C-h w and C-h f kill-line reports: 
    458433  kill-line is remapped to new-kill-line which is on C-k, <deleteline> 
    459  
    460434- C-h w and C-h f new-kill-line reports: 
    461435  new-kill-line is on C-k 
     
    668642 
    669643** Minibuffer changes: 
     644 
     645+++ 
     646*** The new file-name-shadow-mode is turned ON by default, so that when 
     647entering a file name, any prefix which Emacs will ignore is dimmed. 
    670648 
    671649+++ 
     
    15341512+++ 
    15351513** savehist saves minibuffer histories between sessions. 
    1536 To use this feature, put (savehist-load) in your `.emacs' file. 
     1514To use this feature, turn on savehist-mode in your `.emacs' file. 
    15371515 
    15381516+++ 
     
    33403318`kTextEncodingMacRoman', `kTextEncodingISOLatin1', and 
    33413319`kTextEncodingISOLatin2' are obsolete. 
     3320 
     3321** The variable `mac-command-key-is-meta' is obsolete.  Use 
     3322`mac-command-modifier' and `mac-option-modifier' instead. 
    33423323  
    33433324* Incompatible Lisp Changes in Emacs 22.1 
     
    34983479it evaluates those expressions immediately. 
    34993480 
    3500 This is useful in packages that can be preloaded.  
     3481This is useful in packages that can be preloaded. 
    35013482 
    35023483*** `list-faces-display' takes an optional argument, REGEXP. 
     
    44764457+++ 
    44774458*** The new function `window-tree' returns a frame's window tree. 
     4459 
     4460+++ 
     4461*** The functions `get-lru-window' and `get-largest-window' take an optional 
     4462argument `dedicated'.  If non-nil, those functions do not ignore 
     4463dedicated windows. 
    44784464 
    44794465+++ 
     
    1332213308 
    1332313309The variables font-lock-face-attributes, font-lock-display-type and 
    13324 font-lock-background-mode are now obsolete; the recommended way to specify the 
    13325 faces to use for Font Lock mode is with M-x customize-group on the new custom 
    13326 group font-lock-highlighting-faces.  If you set font-lock-face-attributes in 
    13327 your ~/.emacs file, Font Lock mode will respect its value.  However, you should 
     13310font-lock-background-mode are now obsolete; the recommended way to specify 
     13311the faces to use for Font Lock mode is with M-x customize-group on the new 
     13312custom group font-lock-faces.  If you set font-lock-face-attributes in your 
     13313~/.emacs file, Font Lock mode will respect its value.  However, you should 
    1332813314consider converting from setting that variable to using M-x customize. 
    1332913315