]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove XEmacs compat code from tempo.el
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 12 Jun 2019 20:49:19 +0000 (22:49 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 12 Jun 2019 21:26:56 +0000 (23:26 +0200)
* lisp/tempo.el (tempo-insert-template): Remove XEmacs compat code.

lisp/tempo.el

index e3b9c76a5b88052c24004da1c6900e8cdac1a5de..e28ef326884447a43eb3ccde651833abaf521352 100644 (file)
@@ -294,11 +294,8 @@ TEMPLATE is the template to be inserted.  If ON-REGION is non-nil the
 mode, ON-REGION is ignored and assumed true if the region is active."
   (unwind-protect
       (progn
-       (if (or (and (boundp 'transient-mark-mode) ; For Emacs
-                    transient-mark-mode
-                    mark-active)
-               (if (featurep 'xemacs)
-                   (and zmacs-regions (mark))))
+       (if (or (and transient-mark-mode
+                    mark-active))
            (setq on-region t))
        (and on-region
             (set-marker tempo-region-start (min (mark) (point)))
@@ -313,9 +310,7 @@ mode, ON-REGION is ignored and assumed true if the region is active."
          (tempo-insert-mark (point-marker)))
        (tempo-forward-mark))
     (tempo-forget-insertions)
-    ;; Should I check for zmacs here too???
-    (and (boundp 'transient-mark-mode)
-        transient-mark-mode
+    (and transient-mark-mode
         (deactivate-mark))))
 
 ;;;