diff options
| author | Tom Tromey <tom@tromey.com> | 2015-05-22 08:04:07 -0600 |
|---|---|---|
| committer | Tom Tromey <tom@tromey.com> | 2015-05-22 14:25:59 -0600 |
| commit | 3798c7e4870415f41128fc7d72d08af2109844c8 (patch) | |
| tree | 466bb27c47d77cf45f704f0fb13f3cad07ee1694 | |
| parent | 86db9bdb55e9812425f4c9ece47b1bc2b5dd836b (diff) | |
| download | rust-mode-3798c7e4870415f41128fc7d72d08af2109844c8.tar.gz | |
fix quoting in two doc strings
| -rw-r--r-- | rust-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust-mode.el b/rust-mode.el index 58df76d..efe0f7c 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -751,14 +751,14 @@ This is written mainly to be used as `end-of-defun-function' for Rust." " \\(?:[Ee]rror\\|\\([Ww]arning\\)\\):"))) (cons re '(1 (2 . 4) (3 . 5) (6))))) "Specifications for matching errors in rustc invocations. -See `compilation-error-regexp-alist for help on their format.") +See `compilation-error-regexp-alist' for help on their format.") ;; Match test run failures and panics during compilation as ;; compilation warnings (defvar cargo-compilation-regexps '("^\\s-+thread '[^']+' panicked at \\('[^']+', \\([^:]+\\):\\([0-9]+\\)\\)" 2 3 nil nil 1) "Specifications for matching panics in cargo test invocations. -See `compilation-error-regexp-alist for help on their format.") +See `compilation-error-regexp-alist' for help on their format.") (eval-after-load 'compile '(progn |
