On 25.03.2013 22:51, Markus Pargmann wrote: > Hexadecimal numbers are actually going from a-f not a-e. > > Signed-off-by: Markus Pargmann <[email protected]>
That sounds about right. Acked-by: Daniel Mack <[email protected]> > --- > > Sorry for this. I should have noticed this bug before. Sorry for not seeing it either :) Daniel > > runtime/syntax/dts.vim | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/runtime/syntax/dts.vim b/runtime/syntax/dts.vim > index 62764ca..42cb822 100644 > --- a/runtime/syntax/dts.vim > +++ b/runtime/syntax/dts.vim > @@ -13,7 +13,7 @@ syntax region dtsBinaryProperty start="\[" end="\]" > syntax match dtsStringProperty "\".*\"" > syntax match dtsKeyword "/.*/" > syntax match dtsLabel "^[[:space:]]*[[:alpha:][:digit:]_]\+:" > -syntax match dtsNode > /[[:alpha:][:digit:]-_]\+\(@[0-9a-eA-E]\+\|\)[[:space:]]*{/he=e-1 > +syntax match dtsNode > /[[:alpha:][:digit:]-_]\+\(@[0-9a-fA-F]\+\|\)[[:space:]]*{/he=e-1 > syntax region dtsCellProperty start="<" end=">" > contains=dtsReference,dtsBinaryProperty,dtsStringProperty,dtsComment > syntax region dtsCommentInner start="/\*" end="\*/" > > -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
