diff options
| author | Tim Landscheidt | 2025-04-28 03:05:22 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2025-04-28 03:05:41 +0300 |
| commit | 4765a3b3f2b83e6a2ba4e63f78bec16dc8ca737f (patch) | |
| tree | 2f87a5b1c494146b84ca0cb67cb27c8e3eac2022 /doc | |
| parent | 568a4894a8d7cc61c7a4cf416939e01fb78f0ead (diff) | |
| download | emacs-4765a3b3f2b83e6a2ba4e63f78bec16dc8ca737f.tar.gz emacs-4765a3b3f2b83e6a2ba4e63f78bec16dc8ca737f.zip | |
Fix ruby lint output regexps
* doc/misc/flymake.texi (An annotated example backend):
Fix regexp.
* lisp/progmodes/ruby-mode.el (ruby-flymake-simple)
(ruby-flymake-rubocop): Fix regexp
(https://lists.gnu.org/archive/html/emacs-devel/2025-04/msg00851.html).
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/flymake.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/misc/flymake.texi b/doc/misc/flymake.texi index d3a76c8c4d7..d6c8778d785 100644 --- a/doc/misc/flymake.texi +++ b/doc/misc/flymake.texi | |||
| @@ -858,7 +858,7 @@ Binding,,, elisp, The Emacs Lisp Reference Manual}) to be active. | |||
| 858 | ;; | 858 | ;; |
| 859 | (cl-loop | 859 | (cl-loop |
| 860 | while (search-forward-regexp | 860 | while (search-forward-regexp |
| 861 | "^\\(?:.*.rb\\|-\\):\\([0-9]+\\): \\(.*\\)$" | 861 | "^\\(?:.*\\.rb\\|-\\):\\([0-9]+\\): \\(.*\\)$" |
| 862 | nil t) | 862 | nil t) |
| 863 | for msg = (match-string 2) | 863 | for msg = (match-string 2) |
| 864 | for (beg . end) = (flymake-diag-region | 864 | for (beg . end) = (flymake-diag-region |