diff options
| author | Andreas Schwab | 2019-07-13 23:59:31 +0200 |
|---|---|---|
| committer | Andreas Schwab | 2019-07-13 23:59:51 +0200 |
| commit | 3767628dc534e64cdc21bdff16d5dd4726feacd2 (patch) | |
| tree | 4c03c1c8e1491311283b02357f71b307b0a78340 | |
| parent | ed29d9fe5286ab6ecfb2bfa5a015b9945a84512b (diff) | |
| download | emacs-3767628dc534e64cdc21bdff16d5dd4726feacd2.tar.gz emacs-3767628dc534e64cdc21bdff16d5dd4726feacd2.zip | |
Revert "Fix typo in sh-assignment-regexp"
This reverts commit 194f370a3da72d560975adc2835254ce251881a7.
| -rw-r--r-- | lisp/progmodes/sh-script.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 64608f1930f..ae90531a7fe 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el | |||
| @@ -582,7 +582,7 @@ This is buffer-local in every such buffer.") | |||
| 582 | ;; actually spaces are only supported in let/(( ... )) | 582 | ;; actually spaces are only supported in let/(( ... )) |
| 583 | (ksh88 . ,(concat "\\<\\([[:alnum:]_]+\\)\\(\\[.+\\]\\)?" | 583 | (ksh88 . ,(concat "\\<\\([[:alnum:]_]+\\)\\(\\[.+\\]\\)?" |
| 584 | "[ \t]*\\(?:[-+*/%&|~^]\\|<<\\|>>\\)?=")) | 584 | "[ \t]*\\(?:[-+*/%&|~^]\\|<<\\|>>\\)?=")) |
| 585 | (bash . "\\<\\([[:alnum:]_]+\\)\\([.+]\\)?\\+?=") | 585 | (bash . "\\<\\([[:alnum:]_]+\\)\\(\\[.+\\]\\)?\\+?=") |
| 586 | (rc . "\\<\\([[:alnum:]_*]+\\)[ \t]*=") | 586 | (rc . "\\<\\([[:alnum:]_*]+\\)[ \t]*=") |
| 587 | (sh . "\\<\\([[:alnum:]_]+\\)=")) | 587 | (sh . "\\<\\([[:alnum:]_]+\\)=")) |
| 588 | "Regexp for the variable name and what may follow in an assignment. | 588 | "Regexp for the variable name and what may follow in an assignment. |