aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-11-29 12:36:55 +0000
committerDave Love2000-11-29 12:36:55 +0000
commit01242779033909f4868d9fc09f87fff725bd1cc6 (patch)
tree7e91362d9d080dc40aa1d856342fc88d1282d9d8
parent346598f1e5a3a76cffa6e31e049a83f9b6edcbe0 (diff)
downloademacs-01242779033909f4868d9fc09f87fff725bd1cc6.tar.gz
emacs-01242779033909f4868d9fc09f87fff725bd1cc6.zip
*** empty log message ***
-rw-r--r--etc/NEWS28
1 files changed, 26 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 6ef617ad45b..b8a59e23212 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1020,8 +1020,8 @@ file names.
1020** Tooltips. 1020** Tooltips.
1021 1021
1022Tooltips are small X windows displaying a help string at the current 1022Tooltips are small X windows displaying a help string at the current
1023mouse position. To use them, use the Lisp package `tooltip' which you 1023mouse position. The Lisp package `tooltip' implements them. You can
1024can access via the user option `tooltip-mode'. 1024turn them off via the user option `tooltip-mode'.
1025 1025
1026Tooltips also provides support for GUD debugging. If activated, 1026Tooltips also provides support for GUD debugging. If activated,
1027variable values can be displayed in tooltips by pointing at them with 1027variable 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
1980There are a few Lisp changes which are not backwards-compatible and
1981may 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
1987which uses both `local-map' and `keymap' properties (for portability)
1988may, for instance, give rise to duplicate menus when the keymaps from
1989these properties are active.
1990
1991** The change in the treatment of non_ASCII characters in search
1992ranges 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.
2824VOLUME must be an integer in the range 0..100 or a float in the range 2840VOLUME must be an integer in the range 0..100 or a float in the range
28250..1. This property is optional. 28410..1. This property is optional.
2826 2842
2843- `:device DEVICE'
2844
2845DEVICE is a string specifying the system device on which to play the
2846sound. The default device is system-dependent.
2847
2827Other properties are ignored. 2848Other properties are ignored.
2828 2849
2850An 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