comparison etc/NEWS @ 32465:355b97042e28

non-ascii character ranges
author Dave Love <fx@gnu.org>
date Fri, 13 Oct 2000 17:31:02 +0000
parents 4925b241a9ac
children 90886fd49673
comparison
equal deleted inserted replaced
32464:c3aecbe98b99 32465:355b97042e28
1756 Fill mode. 1756 Fill mode.
1757 1757
1758 *** gnus-mule.el is now just a compatibility layer over the built-in 1758 *** gnus-mule.el is now just a compatibility layer over the built-in
1759 Gnus facilities. 1759 Gnus facilities.
1760 1760
1761 *** pcomplete.el ??
1762
1761 ** Withdrawn packages 1763 ** Withdrawn packages
1762 1764
1763 *** mldrag.el has been removed. mouse.el provides the same 1765 *** mldrag.el has been removed. mouse.el provides the same
1764 functionality with aliases for the mldrag functions. 1766 functionality with aliases for the mldrag functions.
1765 1767
1768 *** ph.el has been obsoleted by EUDC and removed. 1770 *** ph.el has been obsoleted by EUDC and removed.
1769 1771
1770 1772
1771 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, 1773 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
1772 (Display-related features are described in a page of their own below.) 1774 (Display-related features are described in a page of their own below.)
1775
1776 +++
1777 ** The treatment of non-ACSII characters in search ranges has changed.
1778 If a range in a regular expression or the arg of
1779 skip-chars-forward/backward starts with a unibyte character C and ends
1780 with a multibyte character C2, the range is divided into two: one is
1781 C..?\377, the other is C1..C2, where C1 is the first character of C2's
1782 charset.
1773 1783
1774 +++ 1784 +++
1775 ** The new function `display-message-or-buffer' displays a message in 1785 ** The new function `display-message-or-buffer' displays a message in
1776 the echo area or pops up a buffer, depending on the length of the 1786 the echo area or pops up a buffer, depending on the length of the
1777 message. 1787 message.