Mercurial > emacs
changeset 3875:c5b6f641698a
* compile.el (compile-file-of-error): Remember that
compilation-error-list stores file names as strings, not as (DIR .
FILE) pairs.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 22 Jun 1993 03:54:25 +0000 |
parents | 0a694f8e1730 |
children | 3bd157da2222 |
files | lisp/progmodes/compile.el |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/compile.el Tue Jun 22 03:50:08 1993 +0000 +++ b/lisp/progmodes/compile.el Tue Jun 22 03:54:25 1993 +0000 @@ -507,8 +507,7 @@ (setq data (cdr data)) (if (markerp data) (buffer-file-name (marker-buffer data)) - (setq data (car data)) - (expand-file-name (cdr data) (car data)))) + (car data))) (defun compilation-next-file (n) "Move point to the next error for a different file than the current one."