Mercurial > emacs
comparison etc/NEWS @ 30068:fd80ab818a0c
Fix various typos.
Add a note about easy-menu's filters now working.
Trim down the add-minor-mode announcement.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 05 Jul 2000 17:04:48 +0000 |
parents | 2381ee2fec5b |
children | cdd9c822e994 |
comparison
equal
deleted
inserted
replaced
30067:8cd5cb9e72bd | 30068:fd80ab818a0c |
---|---|
1237 | 1237 |
1238 | 1238 |
1239 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, | 1239 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, |
1240 (Display-related features are described in a page of their own below.) | 1240 (Display-related features are described in a page of their own below.) |
1241 | 1241 |
1242 ** Easy-menu's :filter now works as in XEmacs. | |
1243 It takes the unconverted (i.e. XEmacs) form of the menu and the result | |
1244 is automatically converted to Emacs' form. | |
1245 | |
1242 ** The new function `window-list' has been defined | 1246 ** The new function `window-list' has been defined |
1243 | 1247 |
1244 - Function: window-list &optional WINDOW MINIBUF ALL-FRAMES | 1248 - Function: window-list &optional WINDOW MINIBUF ALL-FRAMES |
1245 | 1249 |
1246 Return a list of windows in canonical order. The parameters WINDOW, | 1250 Return a list of windows in canonical order. The parameters WINDOW, |
1277 ALL-FRAMES = t means include windows on all frames including invisible frames. | 1281 ALL-FRAMES = t means include windows on all frames including invisible frames. |
1278 If ALL-FRAMES is a frame, it means include windows on that frame. | 1282 If ALL-FRAMES is a frame, it means include windows on that frame. |
1279 Anything else means restrict to the selected frame. | 1283 Anything else means restrict to the selected frame. |
1280 | 1284 |
1281 ** The function `single-key-description' now encloses function key | 1285 ** The function `single-key-description' now encloses function key |
1282 and event names in ange brackets. | 1286 and event names in angle brackets. |
1283 | 1287 |
1284 ** If the variable `message-truncate-lines' is bound to t around a | 1288 ** If the variable `message-truncate-lines' is bound to t around a |
1285 call to `message', the echo area will not be resized to display that | 1289 call to `message', the echo area will not be resized to display that |
1286 message; it will be truncated instead. | 1290 message; it will be truncated instead. |
1287 | 1291 |
1401 X 0213 Plane 1 and Plane 2. | 1405 X 0213 Plane 1 and Plane 2. |
1402 | 1406 |
1403 +++ | 1407 +++ |
1404 ** The new character sets `eight-bit-control' and `eight-bit-graphic' | 1408 ** The new character sets `eight-bit-control' and `eight-bit-graphic' |
1405 are introduced for 8-bit characters in the ranges 0x80..0x9F and | 1409 are introduced for 8-bit characters in the ranges 0x80..0x9F and |
1406 0xA0..0xFF repectively. | 1410 0xA0..0xFF respectively. |
1407 | 1411 |
1408 +++ | 1412 +++ |
1409 ** If the APPEND argument of `write-region' is an integer, it seeks to | 1413 ** If the APPEND argument of `write-region' is an integer, it seeks to |
1410 that offset in the file before writing. | 1414 that offset in the file before writing. |
1411 | 1415 |
1412 ** `concat' no longer accepts individual integer arguments, as | 1416 ** `concat' no longer accepts individual integer arguments, as |
1413 promised long ago. | 1417 promised long ago. |
1414 | 1418 |
1415 ** The function `add-minor-mode' simplifies the definition of minor | 1419 ** The function `add-minor-mode' has been added for convenience and |
1416 modes. | 1420 compatibility with XEmacs (and is used internally by define-minor-mode). |
1417 | |
1418 - Function: add-minor-mode TOGGLE NAME &optional KEYMAP AFTER TOGGLE-FUN | |
1419 | |
1420 Register a new minor mode. | |
1421 | |
1422 TOGGLE is a symbol which is the name of a buffer-local variable that | |
1423 is toggled on or off to say whether the minor mode is active or not. | |
1424 | |
1425 NAME specifies what will appear in the mode line when the minor mode | |
1426 is active. NAME should be either a string starting with a space, or a | |
1427 symbol whose value is such a string. | |
1428 | |
1429 Optional KEYMAP is the keymap for the minor mode that will be added | |
1430 to `minor-mode-map-alist'. | |
1431 | |
1432 Optional AFTER specifies that TOGGLE should be added after AFTER | |
1433 in `minor-mode-alist'. | |
1434 | |
1435 Optional TOGGLE-FUN is there for compatiblity with other Emacssen. | |
1436 It is currently not used. | |
1437 | 1421 |
1438 ** The function `shell-command' now sets the default directory of the | 1422 ** The function `shell-command' now sets the default directory of the |
1439 `*Shell Command Output*' buffer to the default directory of the buffer | 1423 `*Shell Command Output*' buffer to the default directory of the buffer |
1440 from which the command was issued. | 1424 from which the command was issued. |
1441 | 1425 |
1533 => -7 | 1517 => -7 |
1534 #25rah | 1518 #25rah |
1535 => 267 | 1519 => 267 |
1536 | 1520 |
1537 ** The function `documentation-property' now evaluates the value of | 1521 ** The function `documentation-property' now evaluates the value of |
1538 the given property to obtain a a string if it doesn't refer to etc/DOC | 1522 the given property to obtain a string if it doesn't refer to etc/DOC |
1539 and isn't a string. | 1523 and isn't a string. |
1540 | 1524 |
1541 ** If called for a symbol, the function `documentation' now looks for | 1525 ** If called for a symbol, the function `documentation' now looks for |
1542 a `function-documentation' property of that symbol. If it has a non-nil | 1526 a `function-documentation' property of that symbol. If it has a non-nil |
1543 value, the documentation is taken from that value. If the value is | 1527 value, the documentation is taken from that value. If the value is |