diff options
| author | Dave Love | 2000-11-29 12:36:55 +0000 |
|---|---|---|
| committer | Dave Love | 2000-11-29 12:36:55 +0000 |
| commit | 01242779033909f4868d9fc09f87fff725bd1cc6 (patch) | |
| tree | 7e91362d9d080dc40aa1d856342fc88d1282d9d8 | |
| parent | 346598f1e5a3a76cffa6e31e049a83f9b6edcbe0 (diff) | |
| download | emacs-01242779033909f4868d9fc09f87fff725bd1cc6.tar.gz emacs-01242779033909f4868d9fc09f87fff725bd1cc6.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 28 |
1 files changed, 26 insertions, 2 deletions
| @@ -1020,8 +1020,8 @@ file names. | |||
| 1020 | ** Tooltips. | 1020 | ** Tooltips. |
| 1021 | 1021 | ||
| 1022 | Tooltips are small X windows displaying a help string at the current | 1022 | Tooltips are small X windows displaying a help string at the current |
| 1023 | mouse position. To use them, use the Lisp package `tooltip' which you | 1023 | mouse position. The Lisp package `tooltip' implements them. You can |
| 1024 | can access via the user option `tooltip-mode'. | 1024 | turn them off via the user option `tooltip-mode'. |
| 1025 | 1025 | ||
| 1026 | Tooltips also provides support for GUD debugging. If activated, | 1026 | Tooltips also provides support for GUD debugging. If activated, |
| 1027 | variable values can be displayed in tooltips by pointing at them with | 1027 | variable values can be displayed in tooltips by pointing at them with |
| @@ -1975,6 +1975,22 @@ functionality with aliases for the mldrag functions. | |||
| 1975 | *** ph.el has been obsoleted by EUDC and removed. | 1975 | *** ph.el has been obsoleted by EUDC and removed. |
| 1976 | 1976 | ||
| 1977 | 1977 | ||
| 1978 | * Incompatible Lisp changes | ||
| 1979 | |||
| 1980 | There are a few Lisp changes which are not backwards-compatible and | ||
| 1981 | may require changes to existing code. Here is a list for reference. | ||
| 1982 | |||
| 1983 | ** Since `format' preserves text properties, the idiom | ||
| 1984 | `(format %s foo)' no longer works to remove properties. | ||
| 1985 | |||
| 1986 | ** Since the `keymap' text property now has significance, some code | ||
| 1987 | which uses both `local-map' and `keymap' properties (for portability) | ||
| 1988 | may, for instance, give rise to duplicate menus when the keymaps from | ||
| 1989 | these properties are active. | ||
| 1990 | |||
| 1991 | ** The change in the treatment of non_ASCII characters in search | ||
| 1992 | ranges may affect some code. | ||
| 1993 | |||
| 1978 | * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, | 1994 | * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, |
| 1979 | (Display-related features are described in a page of their own below.) | 1995 | (Display-related features are described in a page of their own below.) |
| 1980 | 1996 | ||
| @@ -2824,8 +2840,16 @@ may be present, but not both. | |||
| 2824 | VOLUME must be an integer in the range 0..100 or a float in the range | 2840 | VOLUME must be an integer in the range 0..100 or a float in the range |
| 2825 | 0..1. This property is optional. | 2841 | 0..1. This property is optional. |
| 2826 | 2842 | ||
| 2843 | - `:device DEVICE' | ||
| 2844 | |||
| 2845 | DEVICE is a string specifying the system device on which to play the | ||
| 2846 | sound. The default device is system-dependent. | ||
| 2847 | |||
| 2827 | Other properties are ignored. | 2848 | Other properties are ignored. |
| 2828 | 2849 | ||
| 2850 | An alternative interface is called as | ||
| 2851 | (play-sound-file FILE &optional VOLUME DEVICE). | ||
| 2852 | |||
| 2829 | ** `multimedia' is a new Finder keyword and Custom group. | 2853 | ** `multimedia' is a new Finder keyword and Custom group. |
| 2830 | 2854 | ||
| 2831 | ** keywordp is a new predicate to test efficiently for an object being | 2855 | ** keywordp is a new predicate to test efficiently for an object being |