kalvinC / vim

Automatically exported from code.google.com/p/vim
0 stars 0 forks source link

Minor bug in autoload/syntaxcomplete.vim line 459 #86

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Minor error in version 7.3.692 in autoload/syntaxcomplete.vim line 459:

  let accept_chars = escape(accept_chars, '\\/.*$^~[]-' )

should be

  let accept_chars = escape(accept_chars, '\\/.*$^~[]' )

since '-' should also be escaped.

Original issue reported on code.google.com by karl.yn...@gmail.com on 18 Oct 2012 at 12:18

GoogleCodeExporter commented 9 years ago
Attaching patch from issue 87 -- not sure why it was a separate issue.

Original comment by ben...@benizi.com on 18 Oct 2012 at 1:25

Attachments:

GoogleCodeExporter commented 9 years ago
This seems to be fixed, so closing.
Please note, whenever you have problems with runtime files, first try to 
contact the maintainer of that particular file. He will then send updated files 
to Bram for inclusion.

Original comment by chrisbr...@googlemail.com on 30 Sep 2014 at 6:34