diff options
| author | Eli Zaretskii | 2016-01-13 21:14:22 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-01-13 21:14:22 +0200 |
| commit | 30c24e49cb82a817a123405df92210cbab12c459 (patch) | |
| tree | a6a5313c51ae94f19e8b397b0134f5a2dff00483 /lisp | |
| parent | 53fb7e6e5da541e0b5f6b203f567cb5900185e21 (diff) | |
| download | emacs-30c24e49cb82a817a123405df92210cbab12c459.tar.gz emacs-30c24e49cb82a817a123405df92210cbab12c459.zip | |
Document obsoletion of 'intangible' and 'point-entered/left'
* doc/lispref/text.texi (Special Properties): Document the new
properties 'cursor-intangible' and 'cursor-sensor-functions'.
Document the obsolete status of 'intangible', 'pointer-left',
and 'point-entered' properties, and of 'inhibit-point-motion-hooks'.
* doc/lispref/display.texi (Overlay Properties): Document that
'intangible' overlay property is obsolete.
* lisp/emacs-lisp/cursor-sensor.el (cursor-sensor-mode): Doc fix.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/emacs-lisp/cursor-sensor.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cursor-sensor.el b/lisp/emacs-lisp/cursor-sensor.el index 70c4458d300..ac063d4896a 100644 --- a/lisp/emacs-lisp/cursor-sensor.el +++ b/lisp/emacs-lisp/cursor-sensor.el | |||
| @@ -167,8 +167,8 @@ | |||
| 167 | This property should hold a list of functions which react to the motion | 167 | This property should hold a list of functions which react to the motion |
| 168 | of the cursor. They're called with three arguments (WINDOW OLDPOS DIR) | 168 | of the cursor. They're called with three arguments (WINDOW OLDPOS DIR) |
| 169 | where WINDOW is the affected window, OLDPOS is the last known position of | 169 | where WINDOW is the affected window, OLDPOS is the last known position of |
| 170 | the cursor and DIR can be `left' or `entered' depending on whether the cursor is | 170 | the cursor and DIR can be `entered' or `left' depending on whether the cursor |
| 171 | entering the area covered by the text-property property or leaving it." | 171 | is entering the area covered by the text-property property or leaving it." |
| 172 | nil nil nil | 172 | nil nil nil |
| 173 | (if cursor-sensor-mode | 173 | (if cursor-sensor-mode |
| 174 | (add-hook 'pre-redisplay-functions #'cursor-sensor--detect | 174 | (add-hook 'pre-redisplay-functions #'cursor-sensor--detect |