aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1992-08-06 23:56:50 +0000
committerRoland McGrath1992-08-06 23:56:50 +0000
commitd1ed4475846d7fad0ce8b42018149fea7ebab2e3 (patch)
treed268588dfb3e7680b600e10ca99a3049063dc0f1
parentca2c38f674beed82ff7ac38a31261649a6c22fb6 (diff)
downloademacs-d1ed4475846d7fad0ce8b42018149fea7ebab2e3.tar.gz
emacs-d1ed4475846d7fad0ce8b42018149fea7ebab2e3.zip
*** empty log message ***
-rw-r--r--lisp/progmodes/compile.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 9a718924877..8bf1a279848 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -310,8 +310,8 @@ Returns the compilation buffer created."
310 (define-key map "\^?" 'scroll-down) 310 (define-key map "\^?" 'scroll-down)
311 (define-key map "\M-n" 'compilation-next-error) 311 (define-key map "\M-n" 'compilation-next-error)
312 (define-key map "\M-p" 'compilation-previous-error) 312 (define-key map "\M-p" 'compilation-previous-error)
313 (define-key map "\C-x[" 'compilation-previous-file) 313 (define-key map "\M-{" 'compilation-previous-file)
314 (define-key map "\C-x]" 'compilation-next-file) 314 (define-key map "\M-}" 'compilation-next-file)
315 map) 315 map)
316 "Keymap for compilation log buffers.") 316 "Keymap for compilation log buffers.")
317 317
@@ -872,7 +872,6 @@ See variable `compilation-parse-errors-function' for the interface it uses."
872 872
873 ;; Figure out which constituent regexp matched. 873 ;; Figure out which constituent regexp matched.
874 (cond ((match-beginning enter-group) 874 (cond ((match-beginning enter-group)
875 (funcall progress)
876 ;; The match was the enter-directory regexp. 875 ;; The match was the enter-directory regexp.
877 (let ((dir 876 (let ((dir
878 (file-name-as-directory 877 (file-name-as-directory
@@ -885,7 +884,6 @@ See variable `compilation-parse-errors-function' for the interface it uses."
885 (setq default-directory dir)))) 884 (setq default-directory dir))))
886 885
887 ((match-beginning leave-group) 886 ((match-beginning leave-group)
888 (funcall progress)
889 ;; The match was the leave-directory regexp. 887 ;; The match was the leave-directory regexp.
890 (let ((beg (match-beginning (+ leave-group 1))) 888 (let ((beg (match-beginning (+ leave-group 1)))
891 (stack compilation-directory-stack)) 889 (stack compilation-directory-stack))
@@ -939,7 +937,6 @@ See variable `compilation-parse-errors-function' for the interface it uses."
939 (cons filename linenum)) 937 (cons filename linenum))
940 compilation-error-list)))) 938 compilation-error-list))))
941 (setq nfound (1+ nfound)) 939 (setq nfound (1+ nfound))
942 (funcall progress)
943 (and find-at-least (>= nfound find-at-least) 940 (and find-at-least (>= nfound find-at-least)
944 ;; We have found as many new errors as the user wants. 941 ;; We have found as many new errors as the user wants.
945 (setq found-desired t))) 942 (setq found-desired t)))