(Finding Overlays): Fix example code.
This commit is contained in:
parent
d565f6aa3f
commit
86b032fa4c
1 changed files with 1 additions and 1 deletions
|
@ -1065,7 +1065,7 @@ overlays that specify property @var{prop} for the character at point:
|
|||
(let ((overlays (overlays-at (point)))
|
||||
found)
|
||||
(while overlays
|
||||
(let ((overlay (cdr overlays)))
|
||||
(let ((overlay (car overlays)))
|
||||
(if (overlay-get overlay prop)
|
||||
(setq found (cons overlay found))))
|
||||
(setq overlays (cdr overlays)))
|
||||
|
|
Loading…
Add table
Reference in a new issue