diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-05-28 21:11:41 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-05-28 21:11:41 +0000 |
commit | eeb3ede4089ca11faa789ad55c55e2c01a620f6e (patch) | |
tree | 317326678fe0bce8bcf738f0eb1b240e4ef1be04 | |
parent | 889bfc7d448e69692bc42a42a4a591b11059129d (diff) | |
download | emacs-eeb3ede4089ca11faa789ad55c55e2c01a620f6e.tar.gz |
(compilation-error-regexp-alist): Use expand-file-name and data-directory.
-rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index da43b7b7098..0a1ed9e7077 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -329,7 +329,7 @@ be added." (list 'const (car elt))) compilation-error-regexp-alist-alist)) :link `(file-link :tag "example file" - ,(concat doc-directory "compilation.txt")) + ,(expand-file-name "compilation.txt" data-directory)) :group 'compilation) (defvar compilation-directory nil |