" Vim syntax file
-" Language: configure.in script: M4 with sh
+" Language: Autoconf M4
" Former Maintainer: Christian Hammesr <ch@lathspell.westend.com>
" Last Change: 2018 Feb 03
" (patch from Yngve Inntjore Levinsen to detect AC_MSG)
" (patch from Khym Chanur to add @Spell)
" (patch from James McCoy to fix paren matching)
+" (2025 Sep 14 patch from Damien Lejay to detect unportable +=)
" Well, I actually even do not know much about m4. This explains why there
" is probably very much missing here, yet !
syn region configmsg matchgroup=configfunction start="AC_MSG_[A-Z]*\ze(\[" matchgroup=configdelimiter end="\])" contains=configdelimiter,@Spell
syn region configmsg matchgroup=configfunction start="AC_MSG_[A-Z]*\ze([^[]" matchgroup=configdelimiter end=")" contains=configdelimiter,@Spell
+" Help write portable shell code
+syn match acPlusEq '\v\+\=' containedin=ALLBUT,configcomment
+
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
hi def link configspecial Special
hi def link configstring String
hi def link configmsg String
+hi def link acPlusEq Error
let b:current_syntax = "config"