emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el
Date: Mon, 07 Jul 2003 16:53:20 -0400

Index: emacs/lisp/progmodes/compile.el
diff -c emacs/lisp/progmodes/compile.el:1.274 
emacs/lisp/progmodes/compile.el:1.275
*** emacs/lisp/progmodes/compile.el:1.274       Wed Jun  4 05:31:38 2003
--- emacs/lisp/progmodes/compile.el     Mon Jul  7 16:53:19 2003
***************
*** 50,56 ****
                 integer)
    :group 'compilation)
  
! (defcustom compile-auto-highlight nil
    "*Specify how many compiler errors to highlight (and parse) initially.
  \(Highlighting applies to an error message when the mouse is over it.)
  If this is a number N, all compiler error messages in the first N lines
--- 50,56 ----
                 integer)
    :group 'compilation)
  
! (defcustom compile-auto-highlight t
    "*Specify how many compiler errors to highlight (and parse) initially.
  \(Highlighting applies to an error message when the mouse is over it.)
  If this is a number N, all compiler error messages in the first N lines
***************
*** 644,652 ****
  Interactively, prompts for the command if `compilation-read-command' is
  non-nil; otherwise uses `compile-command'.  With prefix arg, always prompts.
  
! To run more than one compilation at once, start one and rename the
! \`*compilation*' buffer to some other name with \\[rename-buffer].
! Then start the next one.
  
  The name used for the buffer is actually whatever is returned by
  the function in `compilation-buffer-name-function', so you can set that
--- 644,654 ----
  Interactively, prompts for the command if `compilation-read-command' is
  non-nil; otherwise uses `compile-command'.  With prefix arg, always prompts.
  
! To run more than one compilation at once, start one and rename
! the \`*compilation*' buffer to some other name with
! \\[rename-buffer].  Then start the next one.  On most systems,
! termination of the main compilation process kills its
! subprocesses.
  
  The name used for the buffer is actually whatever is returned by
  the function in `compilation-buffer-name-function', so you can set that
***************
*** 1408,1416 ****
                              (error "Moved back past first error")
                            (nth (+ i n) compilation-old-error-list)))
                      (save-excursion
!                       (while (> n 0)
                          ;; Discard the current error and any previous.
!                         (while (>= (point) (car (car errors)))
                            (setq errors (cdr errors)))
                          ;; Now (car errors) is the next error.
                          ;; If we want to move down more errors,
--- 1410,1418 ----
                              (error "Moved back past first error")
                            (nth (+ i n) compilation-old-error-list)))
                      (save-excursion
!                       (while (and (> n 0) errors)
                          ;; Discard the current error and any previous.
!                         (while (and errors (>= (point) (car (car errors))))
                            (setq errors (cdr errors)))
                          ;; Now (car errors) is the next error.
                          ;; If we want to move down more errors,




reply via email to

[Prev in Thread] Current Thread [Next in Thread]