diff options
| author | Richard M. Stallman | 1995-06-20 13:43:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-06-20 13:43:22 +0000 |
| commit | 2e792253035450fdcf6f05c372d88f3c79374436 (patch) | |
| tree | b61116b84ae115a7562efef46165096409882945 | |
| parent | 91bf5fad9014138b5e460bfc44a81501925fd23a (diff) | |
| download | emacs-2e792253035450fdcf6f05c372d88f3c79374436.tar.gz emacs-2e792253035450fdcf6f05c372d88f3c79374436.zip | |
Comment change.
| -rw-r--r-- | lisp/tempo.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/tempo.el b/lisp/tempo.el index 3d65c6b6eb8..fe23ab85035 100644 --- a/lisp/tempo.el +++ b/lisp/tempo.el | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | ;; Author: David K}gedal <davidk@lysator.liu.se > | 4 | ;; Author: David K}gedal <davidk@lysator.liu.se > |
| 5 | ;; Created: 16 Feb 1994 | 5 | ;; Created: 16 Feb 1994 |
| 6 | ;; K}gedal's last version number: 1.2.3 | 6 | ;; K}gedal's last version number: 1.2.4 |
| 7 | ;; Keywords: extensions, languages, tools | 7 | ;; Keywords: extensions, languages, tools |
| 8 | 8 | ||
| 9 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| @@ -304,10 +304,10 @@ TEMPLATE is the template to be inserted. If ON-REGION is non-nil the | |||
| 304 | mode, ON-REGION is ignored and assumed true if the region is active." | 304 | mode, ON-REGION is ignored and assumed true if the region is active." |
| 305 | (unwind-protect | 305 | (unwind-protect |
| 306 | (progn | 306 | (progn |
| 307 | (if (or (and (boundp 'transient-mark-mode) ; For XEmacs | 307 | (if (or (and (boundp 'transient-mark-mode) ; For Emacs |
| 308 | transient-mark-mode | 308 | transient-mark-mode |
| 309 | mark-active) | 309 | mark-active) |
| 310 | (and (boundp 'zmacs-regions) ; For Emacs | 310 | (and (boundp 'zmacs-regions) ; For XEmacs |
| 311 | zmacs-regions (mark))) | 311 | zmacs-regions (mark))) |
| 312 | (setq on-region t)) | 312 | (setq on-region t)) |
| 313 | (and on-region | 313 | (and on-region |