diff options
| -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. |