mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
* lisp/progmodes/sh-script.el (sh-assignment-regexp): Add entry for
bash.
This commit is contained in:
parent
3ffbc301c0
commit
e981b61f0f
2 changed files with 6 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* progmodes/sh-script.el (sh-assignment-regexp): Add entry for
|
||||||
|
bash.
|
||||||
|
|
||||||
2011-11-19 Juri Linkov <juri@jurta.org>
|
2011-11-19 Juri Linkov <juri@jurta.org>
|
||||||
|
|
||||||
* info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
|
* info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
|
||||||
|
|
|
||||||
|
|
@ -567,6 +567,7 @@ This is buffer-local in every such buffer.")
|
||||||
'((csh . "\\<\\([[:alnum:]_]+\\)\\(\\[.+\\]\\)?[ \t]*[-+*/%^]?=")
|
'((csh . "\\<\\([[:alnum:]_]+\\)\\(\\[.+\\]\\)?[ \t]*[-+*/%^]?=")
|
||||||
;; actually spaces are only supported in let/(( ... ))
|
;; actually spaces are only supported in let/(( ... ))
|
||||||
(ksh88 . "\\<\\([[:alnum:]_]+\\)\\(\\[.+\\]\\)?[ \t]*\\([-+*/%&|~^]\\|<<\\|>>\\)?=")
|
(ksh88 . "\\<\\([[:alnum:]_]+\\)\\(\\[.+\\]\\)?[ \t]*\\([-+*/%&|~^]\\|<<\\|>>\\)?=")
|
||||||
|
(bash . "\\<\\([[:alnum:]_]+\\)\\(\\[.+\\]\\)?\\+?=")
|
||||||
(rc . "\\<\\([[:alnum:]_*]+\\)[ \t]*=")
|
(rc . "\\<\\([[:alnum:]_*]+\\)[ \t]*=")
|
||||||
(sh . "\\<\\([[:alnum:]_]+\\)="))
|
(sh . "\\<\\([[:alnum:]_]+\\)="))
|
||||||
"Regexp for the variable name and what may follow in an assignment.
|
"Regexp for the variable name and what may follow in an assignment.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue