aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2003-12-01 02:29:01 +0000
committerLuc Teirlinck2003-12-01 02:29:01 +0000
commitd18473b95695efe4e942defafe88a85963f9925f (patch)
tree62c13adae72f63a3164cc4d644519f880bb99db9
parentd1c553c832d66677f2c1bd6d4e6394275cbe25e6 (diff)
downloademacs-d18473b95695efe4e942defafe88a85963f9925f.tar.gz
emacs-d18473b95695efe4e942defafe88a85963f9925f.zip
*** empty log message ***
-rw-r--r--etc/NEWS30
1 files changed, 27 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index db255e880a4..541aba0f2c5 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -83,6 +83,23 @@ See the files mac/README and mac/INSTALL for build instructions.
83 83
84* Changes in Emacs 21.4 84* Changes in Emacs 21.4
85 85
86** New command `display-local-help' displays any local help at point
87in the echo area. It is bound to `C-h .'. It normally displays the
88same string that would be displayed on mouse-over using the
89`help-echo' property, but, in certain cases, it can display a more
90keyboard oriented alternative.
91
92** New user option `help-at-pt-display-when-idle' allows to
93automatically show the help provided by `display-local-help' on
94point-over, after suitable idle time. The amount of idle time is
95determined by the user option `help-at-pt-timer-delay' and defaults
96to one second. This feature is turned off by default.
97
98** New commands `scan-buf-next-region' and `scan-buf-previous-region'
99move to the start of the next (previous, respectively) region with
100non-nil help-echo property and display any help found there in the
101echo area, using `display-local-help'.
102
86+++ 103+++
87** Help mode now only makes hyperlinks for faces when the face name is 104** Help mode now only makes hyperlinks for faces when the face name is
88preceded or followed by the word `face'. It no longer makes 105preceded or followed by the word `face'. It no longer makes
@@ -1433,7 +1450,7 @@ compilation mode settings for grep commands.
1433 1450
1434*** Source line is temporarily highlighted when going to next match. 1451*** Source line is temporarily highlighted when going to next match.
1435 1452
1436*** New key bindings in grep output window: 1453*** New key bindings in grep output window:
1437SPC and DEL scrolls window up and down. C-n and C-p moves to next and 1454SPC and DEL scrolls window up and down. C-n and C-p moves to next and
1438previous match in the grep window. RET jumps to the source line of 1455previous match in the grep window. RET jumps to the source line of
1439the current match. `n' and `p' shows next and previous match in 1456the current match. `n' and `p' shows next and previous match in
@@ -1721,6 +1738,12 @@ configuration files.
1721 1738
1722* Lisp Changes in Emacs 21.4 1739* Lisp Changes in Emacs 21.4
1723 1740
1741** New function `get-char-property-and-overlay' accepts the same
1742arguments as `get-char-property' and returns a cons whose car is the
1743return value of `get-char-property' called with those arguments and
1744whose cdr is the overlay in which the property was found, or nil if
1745it was found as a text property or not found at all.
1746
1724** Mouse event enhancements: 1747** Mouse event enhancements:
1725 1748
1726*** Mouse clicks on fringes now generates left-fringe or right-fringes 1749*** Mouse clicks on fringes now generates left-fringe or right-fringes
@@ -1749,7 +1772,7 @@ text area).
1749 1772
1750+++ 1773+++
1751*** Mouse events include relative x and y pixel coordinates relative to 1774*** Mouse events include relative x and y pixel coordinates relative to
1752the top left corner of the object (image or character) clicked on. 1775the top left corner of the object (image or character) clicked on.
1753 1776
1754*** New functions 'posn-object' and 'posn-object-x-y' return the image 1777*** New functions 'posn-object' and 'posn-object-x-y' return the image
1755or string object of a mouse click, and the x and y pixel coordinates 1778or string object of a mouse click, and the x and y pixel coordinates
@@ -1784,6 +1807,7 @@ documented.
1784locally to provide Eldoc functionality by some method appropriate to 1807locally to provide Eldoc functionality by some method appropriate to
1785the language. 1808the language.
1786 1809
1810---
1787** New coding system property `mime-text-unsuitable' indicates that 1811** New coding system property `mime-text-unsuitable' indicates that
1788the coding system's `mime-charset' is not suitable for MIME text 1812the coding system's `mime-charset' is not suitable for MIME text
1789parts, e.g. utf-16. 1813parts, e.g. utf-16.
@@ -2750,7 +2774,7 @@ refontification of `bar' whenever the `e' is added/removed.
2750called to print the entries' values. It defaults to `princ'. 2774called to print the entries' values. It defaults to `princ'.
2751 2775
2752** defcustom and other custom declarations now use a default group 2776** defcustom and other custom declarations now use a default group
2753(the last group defined in the same file) when no :group was given. 2777(the last prior group defined in the same file) when no :group was given.
2754 2778
2755+++ 2779+++
2756** emacsserver now runs pre-command-hook and post-command-hook when 2780** emacsserver now runs pre-command-hook and post-command-hook when