diff options
author | Juri Linkov <juri@jurta.org> | 2005-07-22 18:44:45 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-07-22 18:44:45 +0000 |
commit | ba698f3b649630762f9e8da1503c93be07af0c6f (patch) | |
tree | 331b52b9276b28bb672bcf925f3b3fc96dc7d681 /lisp/tempo.el | |
parent | 93bb512f12be1d59a6619a6d658d206d4604f849 (diff) | |
download | emacs-ba698f3b649630762f9e8da1503c93be07af0c6f.tar.gz |
(tempo-insert-template): Fix 2005-07-16 change.
Diffstat (limited to 'lisp/tempo.el')
-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 915d3a430d8..282885e2d65 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." transient-mark-mode mark-active) (if (featurep 'xemacs) - zmacs-regions (mark))) + (and zmacs-regions (mark)))) (setq on-region t)) (and on-region (set-marker tempo-region-start (min (mark) (point))) |