summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2013-08-27 12:48:51 +0200
committerFelix S. Klock II <pnkfelix@pnkfx.org>2013-08-27 12:48:51 +0200
commit6a6dc4ec09f96f065ce9e2085adad9f5f1db2ef2 (patch)
tree8edb20d81478a31288daf380b7c484e0ac26661a /rust-mode.el
parent0a81930050aae32ed800a4e801924216beea353c (diff)
downloadrust-mode-6a6dc4ec09f96f065ce9e2085adad9f5f1db2ef2.tar.gz
fix typo in rust-mode.el
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el
index 4c257e9..4bb0c40 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -229,7 +229,7 @@ The initializer is `DEFAULT-TAB-WIDTH'.")
;; regexp (which is broken on a few edge cases), add our own 'rust
;; compilation error regexp and use it instead.
(defvar rustc-compilation-regexps
- (let ((file "^\\([^\n]+\\)")
+ (let ((file "\\([^\n]+\\)")
(start-line "\\([0-9]+\\)")
(start-col "\\([0-9]+\\)")
(end-line "\\([0-9]+\\)")