diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index d3a5ffd1491..335523de604 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -4222,7 +4222,11 @@ OVERLAY. */) | |||
| 4222 | 4222 | ||
| 4223 | DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 2, 0, | 4223 | DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 2, 0, |
| 4224 | doc: /* Return a list of the overlays that contain the character at POS. | 4224 | doc: /* Return a list of the overlays that contain the character at POS. |
| 4225 | If SORTED is non-nil, then sort them by decreasing priority. */) | 4225 | If SORTED is non-nil, then sort them by decreasing priority. |
| 4226 | |||
| 4227 | Zero-length overlays that start and stop at POS are not included in | ||
| 4228 | the return value. Instead use `overlays-in' if those overlays are of | ||
| 4229 | interest. */) | ||
| 4226 | (Lisp_Object pos, Lisp_Object sorted) | 4230 | (Lisp_Object pos, Lisp_Object sorted) |
| 4227 | { | 4231 | { |
| 4228 | ptrdiff_t len, noverlays; | 4232 | ptrdiff_t len, noverlays; |