aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Steingold2000-07-26 18:54:33 +0000
committerSam Steingold2000-07-26 18:54:33 +0000
commit5d94f558ca1addf526e54307d664d312ddc03f81 (patch)
tree7aa6b91b58ead1fdcce5bfd39ed387e90f306921
parentaa78a4f3fc1a9dc3165a30633a600bf384f0bdd0 (diff)
downloademacs-5d94f558ca1addf526e54307d664d312ddc03f81.tar.gz
emacs-5d94f558ca1addf526e54307d664d312ddc03f81.zip
mention `float-time' and the remote file modtime check
-rw-r--r--etc/NEWS36
1 files changed, 21 insertions, 15 deletions
diff --git a/etc/NEWS b/etc/NEWS
index bdcc665b0cc..9460e17831d 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -684,7 +684,7 @@ compiled binary. The same time-stamp will be written at each matching
684pattern. The variable time-stamp-count enables this new feature; it 684pattern. The variable time-stamp-count enables this new feature; it
685defaults to 1. 685defaults to 1.
686 686
687** Partial Completion mode now completes environment variables in 687** Partial Completion mode now completes environment variables in
688file names. 688file names.
689 689
690** Tooltips. 690** Tooltips.
@@ -924,7 +924,7 @@ Provan).
924 924
925*** The mode now uses the abbrev table `makefile-mode-abbrev-table'. 925*** The mode now uses the abbrev table `makefile-mode-abbrev-table'.
926 926
927*** Conditionals and include statements are now highlighted when 927*** Conditionals and include statements are now highlighted when
928Fontlock mode is active. 928Fontlock mode is active.
929 929
930** Isearch changes 930** Isearch changes
@@ -946,7 +946,7 @@ Lazy highlighting is switched on/off by customizing variable
946search string are highlighted. The current match is highlighted as 946search string are highlighted. The current match is highlighted as
947before using face `isearch' or `region'. All other matches are 947before using face `isearch' or `region'. All other matches are
948highlighted using face `isearch-lazy-highlight-face' which defaults to 948highlighted using face `isearch-lazy-highlight-face' which defaults to
949`secondary-selection'. 949`secondary-selection'.
950 950
951The extra highlighting makes it easier to anticipate where the cursor 951The extra highlighting makes it easier to anticipate where the cursor
952will end up each time you press C-s or C-r to repeat a pending search. 952will end up each time you press C-s or C-r to repeat a pending search.
@@ -1067,6 +1067,11 @@ appropriate for C-style escape sequences in strings.
1067containing a list of regular expressions. Buffers matching a regular 1067containing a list of regular expressions. Buffers matching a regular
1068expression from that list, are not checked. 1068expression from that list, are not checked.
1069 1069
1070** Emacs can now figure out modification times of remote files.
1071When you do C-x C-f /user@host:/path/file RET and edit the file,
1072and someone else modifies the file, you will be prompted to revert
1073the buffer, just like for the local files.
1074
1070** New modes and packages 1075** New modes and packages
1071 1076
1072*** The new package xml.el provides a simple but generic XML 1077*** The new package xml.el provides a simple but generic XML
@@ -1292,7 +1297,7 @@ for Autoconf, selected automatically.
1292 1297
1293*** windmove.el provides moving between windows. 1298*** windmove.el provides moving between windows.
1294 1299
1295*** crm.el provides a facility to read multiple strings from the 1300*** crm.el provides a facility to read multiple strings from the
1296minibuffer with completion. 1301minibuffer with completion.
1297 1302
1298*** todo-mode.el provides management of TODO lists and integration 1303*** todo-mode.el provides management of TODO lists and integration
@@ -1327,7 +1332,7 @@ or evaluated, if it is not a string already, to obtain a help string.
1327** Function `make-obsolete' now has an optional arg to say when the 1332** Function `make-obsolete' now has an optional arg to say when the
1328function was declared obsolete. 1333function was declared obsolete.
1329 1334
1330** Function plist-member is renamed from widget-plist-member (which is 1335** Function `plist-member' is renamed from `widget-plist-member' (which is
1331retained as an alias). 1336retained as an alias).
1332 1337
1333** Easy-menu's :filter now works as in XEmacs. 1338** Easy-menu's :filter now works as in XEmacs.
@@ -1381,10 +1386,10 @@ call to `message', the echo area will not be resized to display that
1381message; it will be truncated instead, as it was done in 20.x. 1386message; it will be truncated instead, as it was done in 20.x.
1382Default value is nil. 1387Default value is nil.
1383 1388
1384** The user option line-number-display-limit can now be set to nil, 1389** The user option `line-number-display-limit' can now be set to nil,
1385meaning no limit. 1390meaning no limit.
1386 1391
1387** select-safe-coding-system now also checks the most preferred 1392** `select-safe-coding-system' now also checks the most preferred
1388coding-system if buffer-file-coding-system is `undecided' and 1393coding-system if buffer-file-coding-system is `undecided' and
1389DEFAULT-CODING-SYSTEM is not specified, 1394DEFAULT-CODING-SYSTEM is not specified,
1390 1395
@@ -1404,6 +1409,7 @@ after-change-function are no longer acted upon and have been removed.
1404** `concat' no longer accepts individual integer arguments, as 1409** `concat' no longer accepts individual integer arguments, as
1405promised long ago. 1410promised long ago.
1406 1411
1412** The new function `float-time' returns the current time as a float.
1407 1413
1408* Lisp changes in Emacs 21.1 (see following page for display-related features) 1414* Lisp changes in Emacs 21.1 (see following page for display-related features)
1409 1415
@@ -1588,26 +1594,26 @@ other than 10.
1588*** `#BINTEGER' or `#bINTEGER' reads INTEGER in binary (radix 2). 1594*** `#BINTEGER' or `#bINTEGER' reads INTEGER in binary (radix 2).
1589INTEGER optionally contains a sign. 1595INTEGER optionally contains a sign.
1590 1596
1591 #b1111 1597 #b1111
1592 => 15 1598 => 15
1593 #b-1111 1599 #b-1111
1594 => -15 1600 => -15
1595 1601
1596*** `#OINTEGER' or `#oINTEGER' reads INTEGER in octal (radix 8). 1602*** `#OINTEGER' or `#oINTEGER' reads INTEGER in octal (radix 8).
1597 1603
1598 #o666 1604 #o666
1599 => 438 1605 => 438
1600 1606
1601*** `#XINTEGER' or `#xINTEGER' reads INTEGER in hexadecimal (radix 16). 1607*** `#XINTEGER' or `#xINTEGER' reads INTEGER in hexadecimal (radix 16).
1602 1608
1603 #xbeef 1609 #xbeef
1604 => 48815 1610 => 48815
1605 1611
1606*** `#RADIXrINTEGER' reads INTEGER in radix RADIX, 2 <= RADIX <= 36. 1612*** `#RADIXrINTEGER' reads INTEGER in radix RADIX, 2 <= RADIX <= 36.
1607 1613
1608 #2R-111 1614 #2R-111
1609 => -7 1615 => -7
1610 #25rah 1616 #25rah
1611 => 267 1617 => 267
1612 1618
1613** The function `documentation-property' now evaluates the value of 1619** The function `documentation-property' now evaluates the value of
@@ -2647,12 +2653,12 @@ The following is a list of properties all image types share.
2647 2653
2648ASCENT must be a number in the range 0..100, or the symbol `center'. 2654ASCENT must be a number in the range 0..100, or the symbol `center'.
2649If it is a number, it specifies the percentage of the image's height 2655If it is a number, it specifies the percentage of the image's height
2650to use for its ascent. 2656to use for its ascent.
2651 2657
2652If not specified, ASCENT defaults to the value 50 which means that the 2658If not specified, ASCENT defaults to the value 50 which means that the
2653image will be centered with the base line of the row it appears in. 2659image will be centered with the base line of the row it appears in.
2654 2660
2655If ASCENT is `center' the image is vertically centered around a 2661If ASCENT is `center' the image is vertically centered around a
2656centerline which is the vertical center of text drawn at the position 2662centerline which is the vertical center of text drawn at the position
2657of the image, in the manner specified by the text properties and 2663of the image, in the manner specified by the text properties and
2658overlays that apply to the image. 2664overlays that apply to the image.