diff options
| author | Paul Eggert | 2019-12-04 16:53:39 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-12-04 16:54:24 -0800 |
| commit | ab612302b4917fec5846922f3d8ffafa673c0d36 (patch) | |
| tree | 378749424198f449cf9251c558733fa23a212df1 /lisp/net | |
| parent | 4472b053c3003a34803ec3ce5816caadec7b607a (diff) | |
| download | emacs-ab612302b4917fec5846922f3d8ffafa673c0d36.tar.gz emacs-ab612302b4917fec5846922f3d8ffafa673c0d36.zip | |
Fix regex repetition of repetitions
Problems reported by Mattias EngdegÄrd in:
https://lists.gnu.org/r/emacs-devel/2019-12/msg00066.html
* lisp/gnus/gnus-util.el (gnus-emacs-version):
* lisp/mail/rfc2368.el (rfc2368-mailto-regexp):
* lisp/net/tramp-sh.el (tramp-sh-inotifywait-process-filter):
* lisp/obsolete/terminal.el (te-parse-program-and-args):
* lisp/org/org-table.el (org-table-wrap-region):
* lisp/progmodes/verilog-mode.el (verilog-inject-inst):
Avoid repetition-of-repetition in regexp.
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/tramp-sh.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 59a93a839e0..2aef6ea10fb 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el | |||
| @@ -3799,7 +3799,7 @@ Fall back to normal file name handler if no Tramp handler exists." | |||
| 3799 | (unless (string-match | 3799 | (unless (string-match |
| 3800 | (eval-when-compile | 3800 | (eval-when-compile |
| 3801 | (concat "^[^[:blank:]]+" | 3801 | (concat "^[^[:blank:]]+" |
| 3802 | "[[:blank:]]+\\([^[:blank:]]+\\)+" | 3802 | "[[:blank:]]+\\([^[:blank:]]+\\)" |
| 3803 | "\\([[:blank:]]+\\([^\n\r]+\\)\\)?")) | 3803 | "\\([[:blank:]]+\\([^\n\r]+\\)\\)?")) |
| 3804 | line) | 3804 | line) |
| 3805 | (tramp-error proc 'file-notify-error "%s" line)) | 3805 | (tramp-error proc 'file-notify-error "%s" line)) |