# HG changeset patch # User Jim Blandy # Date 740721265 0 # Node ID c5b6f641698a43adc934a4b79f86e1e358625c02 # Parent 0a694f8e1730b203a13a5ebea666c0cdc27fa26d * compile.el (compile-file-of-error): Remember that compilation-error-list stores file names as strings, not as (DIR . FILE) pairs. diff -r 0a694f8e1730 -r c5b6f641698a lisp/progmodes/compile.el --- 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."