diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-09-26 00:15:30 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-09-26 00:15:30 +0000 |
commit | d74d9a81f64671e00b375955eb12d213a0cc3a53 (patch) | |
tree | f3d4e01fe8404ff1d89adc00451164212db152df /lisp/emacs-lisp | |
parent | 90ce955480c04ded2a1fc6389b8cad697f9946b2 (diff) | |
download | emacs-d74d9a81f64671e00b375955eb12d213a0cc3a53.tar.gz emacs-d74d9a81f64671e00b375955eb12d213a0cc3a53.tar.bz2 emacs-d74d9a81f64671e00b375955eb12d213a0cc3a53.zip |
(regi-interpret): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/regi.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/regi.el b/lisp/emacs-lisp/regi.el index ed3f846bf0e..267d7731435 100644 --- a/lisp/emacs-lisp/regi.el +++ b/lisp/emacs-lisp/regi.el @@ -166,7 +166,7 @@ useful information: ;; lets find the special tags and remove them from the working ;; frame. note that only the last special tag is used. - (mapcar + (mapc (function (lambda (entry) (let ((pred (car entry)) |