diff options
| -rw-r--r-- | lisp/tempo.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tempo.el b/lisp/tempo.el index 3f5687d0d08..004e128a323 100644 --- a/lisp/tempo.el +++ b/lisp/tempo.el | |||
| @@ -303,7 +303,7 @@ mode, ON-REGION is ignored and assumed true if the region is active." | |||
| 303 | (if (or (and (boundp 'transient-mark-mode) ; For Emacs | 303 | (if (or (and (boundp 'transient-mark-mode) ; For Emacs |
| 304 | transient-mark-mode | 304 | transient-mark-mode |
| 305 | mark-active) | 305 | mark-active) |
| 306 | (and (boundp 'zmacs-regions) ; For XEmacs | 306 | (if (featurep 'xemacs) |
| 307 | zmacs-regions (mark))) | 307 | zmacs-regions (mark))) |
| 308 | (setq on-region t)) | 308 | (setq on-region t)) |
| 309 | (and on-region | 309 | (and on-region |