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: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el
Date: Mon, 01 Sep 2003 01:45:44 -0400

Index: emacs/lisp/progmodes/compile.el
diff -c emacs/lisp/progmodes/compile.el:1.277 
emacs/lisp/progmodes/compile.el:1.278
*** emacs/lisp/progmodes/compile.el:1.277       Sun Aug 17 05:49:42 2003
--- emacs/lisp/progmodes/compile.el     Mon Sep  1 01:45:44 2003
***************
*** 1751,1761 ****
                           (consp argp))))
  ;;;###autoload (define-key ctl-x-map "`" 'next-error)
  
! (defun previous-error ()
    "Visit previous compilation error message and corresponding source code.
! This operates on the output from the \\[compile] command."
!   (interactive)
!   (next-error -1))
  
  (defun first-error ()
    "Reparse the error message buffer and start at the first error.
--- 1751,1765 ----
                           (consp argp))))
  ;;;###autoload (define-key ctl-x-map "`" 'next-error)
  
! (defun previous-error (argp)
    "Visit previous compilation error message and corresponding source code.
! 
! A prefix ARGP specifies how many error messages to move;
! negative means move forward to next error messages.
! 
! This operates on the output from the \\[compile] and \\[grep] commands."
!   (interactive "P")
!   (next-error (- (prefix-numeric-value argp))))
  
  (defun first-error ()
    "Reparse the error message buffer and start at the first error.




reply via email to

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