diff options
| -rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 5660f6574f4..acea1f9ddc1 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -5612,7 +5612,7 @@ see `region-noncontiguous-p' and `extract-rectangle-bounds'." | |||
| 5612 | "Return non-nil if the region contains several pieces. | 5612 | "Return non-nil if the region contains several pieces. |
| 5613 | An example is a rectangular region handled as a list of | 5613 | An example is a rectangular region handled as a list of |
| 5614 | separate contiguous regions for each line." | 5614 | separate contiguous regions for each line." |
| 5615 | (> (length (region-bounds)) 1)) | 5615 | (cdr (region-bounds))) |
| 5616 | 5616 | ||
| 5617 | (defvar redisplay-unhighlight-region-function | 5617 | (defvar redisplay-unhighlight-region-function |
| 5618 | (lambda (rol) (when (overlayp rol) (delete-overlay rol)))) | 5618 | (lambda (rol) (when (overlayp rol) (delete-overlay rol)))) |