diff options
| author | Joakim Verona | 2012-01-23 15:10:06 +0100 |
|---|---|---|
| committer | Joakim Verona | 2012-01-23 15:10:06 +0100 |
| commit | 0322b140eead7c94de7f0f6d19a90bd15690b4eb (patch) | |
| tree | 950c011783cc896d0450084cb5155e54548bfe5b /etc/NEWS | |
| parent | d5114bfea3ea4c37c57e2af0f3b095be9fcd8bac (diff) | |
| parent | cb5850f27c1b4d26957d58e2da2314dd12498671 (diff) | |
| download | emacs-0322b140eead7c94de7f0f6d19a90bd15690b4eb.tar.gz emacs-0322b140eead7c94de7f0f6d19a90bd15690b4eb.zip | |
upstream
Diffstat (limited to 'etc/NEWS')
| -rw-r--r-- | etc/NEWS | 43 |
1 files changed, 26 insertions, 17 deletions
| @@ -84,10 +84,6 @@ longer have any effect. (They were declared obsolete in Emacs 23.) | |||
| 84 | ** New command line option `--no-site-lisp' removes site-lisp directories | 84 | ** New command line option `--no-site-lisp' removes site-lisp directories |
| 85 | from load-path. -Q now implies this. | 85 | from load-path. -Q now implies this. |
| 86 | 86 | ||
| 87 | --- | ||
| 88 | ** On Windows, Emacs now warns when the obsolete _emacs init file is used, | ||
| 89 | and also when HOME is set to C:\ by default. | ||
| 90 | |||
| 91 | 87 | ||
| 92 | * Changes in Emacs 24.1 | 88 | * Changes in Emacs 24.1 |
| 93 | 89 | ||
| @@ -374,6 +370,13 @@ turn on `whitespace-mode' for *vc-diff* buffers. Modes should call | |||
| 374 | Instead, use "eval: (minor-mode 1)". | 370 | Instead, use "eval: (minor-mode 1)". |
| 375 | 371 | ||
| 376 | +++ | 372 | +++ |
| 373 | *** The variable `inhibit-first-line-modes-regexps' has been renamed | ||
| 374 | to `inhibit-local-variables-regexps'. As the name suggests, it now | ||
| 375 | applies to ALL file local variables, not just -*- mode ones. | ||
| 376 | The associated `inhibit-first-line-modes-suffixes' has been renamed | ||
| 377 | in the corresponding way. | ||
| 378 | |||
| 379 | +++ | ||
| 377 | ** The variable `focus-follows-mouse' now always defaults to nil. | 380 | ** The variable `focus-follows-mouse' now always defaults to nil. |
| 378 | 381 | ||
| 379 | ** New primitive `secure-hash' that supports many secure hash algorithms | 382 | ** New primitive `secure-hash' that supports many secure hash algorithms |
| @@ -427,11 +430,6 @@ These maximize and minimize the size of a window within its frame. | |||
| 427 | These functions allow to navigate through the live buffers that have | 430 | These functions allow to navigate through the live buffers that have |
| 428 | been shown in a specific window. | 431 | been shown in a specific window. |
| 429 | 432 | ||
| 430 | +++ | ||
| 431 | *** New functions `window-state-get' and `window-state-put'. | ||
| 432 | These functions allow to save and restore the state of an arbitrary | ||
| 433 | frame or window as an Elisp object. | ||
| 434 | |||
| 435 | ** The inactive minibuffer has its own major mode `minibuffer-inactive-mode'. | 433 | ** The inactive minibuffer has its own major mode `minibuffer-inactive-mode'. |
| 436 | This is handy for minibuffer-only frames, and is also used for the "mouse-1 | 434 | This is handy for minibuffer-only frames, and is also used for the "mouse-1 |
| 437 | pops up *Messages*" feature, which can now easily be changed. | 435 | pops up *Messages*" feature, which can now easily be changed. |
| @@ -1158,6 +1156,11 @@ state before the last buffer display operation in that window. | |||
| 1158 | iconifying or deleting a frame when burying a buffer shown in a dedicated | 1156 | iconifying or deleting a frame when burying a buffer shown in a dedicated |
| 1159 | frame or quitting a window showing a buffer in a frame of its own. | 1157 | frame or quitting a window showing a buffer in a frame of its own. |
| 1160 | 1158 | ||
| 1159 | +++ | ||
| 1160 | *** New functions `window-state-get' and `window-state-put'. | ||
| 1161 | These functions allow to save and restore the state of an arbitrary | ||
| 1162 | frame or window as an Elisp object. | ||
| 1163 | |||
| 1161 | ** Completion | 1164 | ** Completion |
| 1162 | 1165 | ||
| 1163 | *** New variable completion-extra-properties used to specify extra properties | 1166 | *** New variable completion-extra-properties used to specify extra properties |
| @@ -1364,6 +1367,9 @@ This means that the empty symbol can now be read back. Also, #: by itself | |||
| 1364 | (when not immediately followed by a possible symbol character) stands for | 1367 | (when not immediately followed by a possible symbol character) stands for |
| 1365 | an empty uninterned symbol. | 1368 | an empty uninterned symbol. |
| 1366 | 1369 | ||
| 1370 | +++ | ||
| 1371 | ** New math functions `isnan', `copysign', `frexp', `ldexp'. | ||
| 1372 | |||
| 1367 | ** Obsolete functions and variables | 1373 | ** Obsolete functions and variables |
| 1368 | 1374 | ||
| 1369 | *** buffer-substring-filters is obsolete. | 1375 | *** buffer-substring-filters is obsolete. |
| @@ -1378,17 +1384,20 @@ Use `filter-buffer-substring-functions' instead. | |||
| 1378 | 1384 | ||
| 1379 | * Changes in Emacs 24.1 on non-free operating systems | 1385 | * Changes in Emacs 24.1 on non-free operating systems |
| 1380 | 1386 | ||
| 1381 | ** New configure.bat option --enable-checking builds Emacs with extra | 1387 | --- |
| 1382 | runtime checks. | 1388 | ** On MS Windows, Emacs warns when using the obsolete init file _emacs, |
| 1389 | and also when HOME is set to C:\ by default. | ||
| 1390 | |||
| 1391 | ** New configure.bat options | ||
| 1392 | |||
| 1393 | *** --enable-checking builds Emacs with extra runtime checks. | ||
| 1383 | 1394 | ||
| 1384 | ** New configure.bat option --distfiles to specify files to be | 1395 | *** --distfiles specifies files to be included in binary distribution. |
| 1385 | included in binary distribution. | ||
| 1386 | 1396 | ||
| 1387 | ** New configure.bat option --without-gnutls to disable automatic | 1397 | *** --without-gnutls disables automatic GnuTLS detection. |
| 1388 | GnuTLS detection. | ||
| 1389 | 1398 | ||
| 1390 | ** New configure.bat option --lib for general library linkage, works | 1399 | *** --lib for general library linkage, works with the USER_LIBS build |
| 1391 | with the USER_LIBS build variable. | 1400 | variable. |
| 1392 | 1401 | ||
| 1393 | ** New make target `dist' to create binary distribution for MS Windows. | 1402 | ** New make target `dist' to create binary distribution for MS Windows. |
| 1394 | 1403 | ||