1 Sep 2003 07:45
Changes to emacs/lisp/progmodes/compile.el
Eli Zaretskii <eliz <at> gnu.org>
2003-09-01 05:45:44 GMT
2003-09-01 05:45:44 GMT
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))))
(Continue reading)
RSS Feed