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: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el
Date: Sun, 14 Nov 2004 23:57:27 -0500

Index: emacs/lisp/progmodes/compile.el
diff -c emacs/lisp/progmodes/compile.el:1.336 
emacs/lisp/progmodes/compile.el:1.337
*** emacs/lisp/progmodes/compile.el:1.336       Mon Nov  8 12:19:14 2004
--- emacs/lisp/progmodes/compile.el     Mon Nov 15 04:51:50 2004
***************
*** 1,7 ****
  ;;; compile.el --- run compiler as inferior of Emacs, parse error messages
  
! ;; Copyright (C) 1985, 86, 87, 93, 94, 95, 96, 97, 98, 1999, 2001, 03, 2004
! ;;  Free Software Foundation, Inc.
  
  ;; Authors: Roland McGrath <address@hidden>,
  ;;        Daniel Pfeiffer <address@hidden>
--- 1,7 ----
  ;;; compile.el --- run compiler as inferior of Emacs, parse error messages
  
! ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
! ;;   2001, 2003, 2004  Free Software Foundation, Inc.
  
  ;; Authors: Roland McGrath <address@hidden>,
  ;;        Daniel Pfeiffer <address@hidden>
***************
*** 638,651 ****
          (goto-char (marker-position marker))
          (when (or end-col end-line)
            (beginning-of-line (- (or end-line line) marker-line -1))
!           (if (< end-col 0)
                (end-of-line)
              (if compilation-error-screen-columns
                  (move-to-column end-col)
                (forward-char end-col)))
            (setq end-marker (list (point-marker))))
          (beginning-of-line (if end-line
!                                (- end-line line -1)
                               (- loc marker-line -1)))
          (if col
              (if compilation-error-screen-columns
--- 638,651 ----
          (goto-char (marker-position marker))
          (when (or end-col end-line)
            (beginning-of-line (- (or end-line line) marker-line -1))
!           (if (or (null end-col) (< end-col 0))
                (end-of-line)
              (if compilation-error-screen-columns
                  (move-to-column end-col)
                (forward-char end-col)))
            (setq end-marker (list (point-marker))))
          (beginning-of-line (if end-line
!                                (- line end-line -1)
                               (- loc marker-line -1)))
          (if col
              (if compilation-error-screen-columns




reply via email to

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