diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-07-16 17:06:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-07-16 17:06:34 +0000 |
commit | 7e3db69c11933915fee117f8b2fca679d2f0cd6d (patch) | |
tree | 2e7a17307403ca4ec5a9e290726e0207413c1b87 /lisp/tempo.el | |
parent | 1a24f45ad4c1235e96405f49403a53a6fb98f529 (diff) | |
download | emacs-7e3db69c11933915fee117f8b2fca679d2f0cd6d.tar.gz |
(tempo-insert-template): Suppress warning.
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 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." (if (or (and (boundp 'transient-mark-mode) ; For Emacs transient-mark-mode mark-active) - (and (boundp 'zmacs-regions) ; For XEmacs + (if (featurep 'xemacs) zmacs-regions (mark))) (setq on-region t)) (and on-region |