diff lisp/progmodes/compile.el @ 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 ae1462a1a8d4
children aa9f37730d77
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."