diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-09-25 11:15:17 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-09-25 11:15:17 +0000 |
commit | 254fc6616dc09f1348cb7fd0dff0aca0341764a3 (patch) | |
tree | 64376cd5b3f76a6604a65b33350ab45b8f01ac75 /lisp/tempo.el | |
parent | e18c18e8709436f35e3c4f9e1c7387e856d2848a (diff) | |
download | emacs-254fc6616dc09f1348cb7fd0dff0aca0341764a3.tar.gz |
(tempo-insert-template, tempo-is-user-element, tempo-forward-mark,
tempo-backward-mark): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp/tempo.el')
-rw-r--r-- | lisp/tempo.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/tempo.el b/lisp/tempo.el index 261dac71818..383dcd40d24 100644 --- a/lisp/tempo.el +++ b/lisp/tempo.el @@ -315,9 +315,9 @@ mode, ON-REGION is ignored and assumed true if the region is active." (goto-char tempo-region-start)) (save-excursion (tempo-insert-mark (point-marker)) - (mapcar (function (lambda (elt) - (tempo-insert elt on-region))) - (symbol-value template)) + (mapc (function (lambda (elt) + (tempo-insert elt on-region))) + (symbol-value template)) (tempo-insert-mark (point-marker))) (tempo-forward-mark)) (tempo-forget-insertions) @@ -460,10 +460,10 @@ never prompted." "Tries all the user-defined element handlers in `tempo-user-elements'." ;; Sigh... I need (some list) (catch 'found - (mapcar (function (lambda (handler) - (let ((result (funcall handler element))) - (if result (throw 'found result))))) - tempo-user-elements) + (mapc (function (lambda (handler) + (let ((result (funcall handler element))) + (if result (throw 'found result))))) + tempo-user-elements) (throw 'found nil))) ;;; @@ -556,7 +556,7 @@ and insert the results." "Jump to the next mark in `tempo-forward-mark-list'." (interactive) (let ((next-mark (catch 'found - (mapcar + (mapc (function (lambda (mark) (if (< (point) mark) @@ -575,7 +575,7 @@ and insert the results." (interactive) (let ((prev-mark (catch 'found (let (last) - (mapcar + (mapc (function (lambda (mark) (if (<= (point) mark) |