mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-14 07:59:34 +00:00
Merge from origin/emacs-27
dd5756436c
Move more logic to vc-ignore from vc-default-ignore2aed279be1
Warn about the likes of "[:alnum:]" in regexps0273f261a7
Don't write absolute filenames and duplicate strings to CV...d7c22338d2
Fix cursor-sensor--detect when current buf != selected win...2e39fc83bb
* doc/emacs/sending.texi (Mail Sending): Fix index entries.b410f902d5
Document 'message-send-mail-function' in the Emacs manualac0546612d
Fix reference to 'message-send-and-exit' in Emacs manualcd6a9b8f65
Skip shell prompt on current line in Eshell even if it's p...
This commit is contained in:
commit
3f01a17d68
8 changed files with 85 additions and 52 deletions
|
@ -146,9 +146,10 @@ By convention, this is a list of symbols where each symbol stands for the
|
|||
;; It's often desirable to make the cursor-sensor-functions property
|
||||
;; non-sticky on both ends, but that means get-pos-property might
|
||||
;; never see it.
|
||||
(new (or (get-char-property point 'cursor-sensor-functions)
|
||||
(unless (<= (point-min) point)
|
||||
(get-char-property (1- point) 'cursor-sensor-functions))))
|
||||
(new (and (eq (current-buffer) (window-buffer))
|
||||
(or (get-char-property point 'cursor-sensor-functions)
|
||||
(unless (<= (point-min) point)
|
||||
(get-char-property (1- point) 'cursor-sensor-functions)))))
|
||||
(old (window-parameter window 'cursor-sensor--last-state))
|
||||
(oldposmark (car old))
|
||||
(oldpos (or (if oldposmark (marker-position oldposmark))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue