diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-10-05 23:47:14 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-10-05 23:47:14 +0000 |
commit | 02c1bd081b9fb5f8fc59bd7c14bd89c58736bd91 (patch) | |
tree | 0e257b878e59c952ed54f047f4546d760f0cef8d /lisp/progmodes | |
parent | dcf4ae738b5a8021a8e0eb83f22f1429bc9dbd4d (diff) | |
download | emacs-02c1bd081b9fb5f8fc59bd7c14bd89c58736bd91.tar.gz |
(compile-collect-regexps): Use dolist and push.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/compile.el | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 44556d8185f..77bf8bf0ad0 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -1987,11 +1987,8 @@ An error message with no file name and no file name has been seen earlier")) ;; Add elements to variable compilation-regexps that is bound in ;; compilation-parse-errors. (and (not (eq this t)) - (while this - (setq compilation-regexps - (cons (cons (car (car this)) (cons type (cdr (car this)))) - compilation-regexps)) - (setq this (cdr this))))) + (dolist (el this) + (push (cons (car el) (cons type (cdr el))) compilation-regexps)))) (defun compile-buffer-substring (index) "Get substring matched by INDEXth subexpression." |