comparison etc/NEWS @ 35421:adba111543f5

*** empty log message ***
author Dave Love <fx@gnu.org>
date Fri, 19 Jan 2001 13:49:43 +0000
parents 5a9310b13ff5
children 4f044a0761e0
comparison
equal deleted inserted replaced
35420:5a9310b13ff5 35421:adba111543f5
723 - Mouse-3 on the buffer-name displays a buffer menu. 723 - Mouse-3 on the buffer-name displays a buffer menu.
724 724
725 - Mouse-2 on the read-only or modified status in the mode line (`%' or 725 - Mouse-2 on the read-only or modified status in the mode line (`%' or
726 `*') toggles the status. 726 `*') toggles the status.
727 727
728 - Mouse-3 on the mode name display a minor-mode menu. 728 - Mouse-3 on the mode name displays a minor-mode menu.
729 729
730 ** LessTif/Motif file selection dialog. 730 ** LessTif/Motif file selection dialog.
731 731
732 When Emacs is configured to use LessTif or Motif, reading a file name 732 When Emacs is configured to use LessTif or Motif, reading a file name
733 from a menu will pop up a file selection dialog if `use-dialog-box' is 733 from a menu will pop up a file selection dialog if `use-dialog-box' is
2079 2079
2080 * Incompatible Lisp changes 2080 * Incompatible Lisp changes
2081 2081
2082 There are a few Lisp changes which are not backwards-compatible and 2082 There are a few Lisp changes which are not backwards-compatible and
2083 may require changes to existing code. Here is a list for reference. 2083 may require changes to existing code. Here is a list for reference.
2084 See the sections below for details.
2084 2085
2085 ** Since `format' preserves text properties, the idiom 2086 ** Since `format' preserves text properties, the idiom
2086 `(format %s foo)' no longer works to remove properties. 2087 `(format %s foo)' no longer works to copy and remove properties.
2088 Use `copy-sequence' and `set-text-properties'.
2087 2089
2088 ** Since the `keymap' text property now has significance, some code 2090 ** Since the `keymap' text property now has significance, some code
2089 which uses both `local-map' and `keymap' properties (for portability) 2091 which uses both `local-map' and `keymap' properties (for portability)
2090 may, for instance, give rise to duplicate menus when the keymaps from 2092 may, for instance, give rise to duplicate menus when the keymaps from
2091 these properties are active. 2093 these properties are active.