comparison src/if_python.c @ 15454:1d2b5c016f17 v8.1.0735

patch 8.1.0735: cannot handle binary data commit https://github.com/vim/vim/commit/6e5ea8d2a995b32bbc5972edc4f827b959f2702f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 12 22:47:31 2019 +0100 patch 8.1.0735: cannot handle binary data Problem: Cannot handle binary data. Solution: Add the Blob type. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/3638)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Jan 2019 23:00:06 +0100
parents 76a65058766f
children 55ccc2d353bd
comparison
equal deleted inserted replaced
15453:cdee6e827112 15454:1d2b5c016f17
1573 case VAR_STRING: 1573 case VAR_STRING:
1574 case VAR_FLOAT: 1574 case VAR_FLOAT:
1575 case VAR_SPECIAL: 1575 case VAR_SPECIAL:
1576 case VAR_JOB: 1576 case VAR_JOB:
1577 case VAR_CHANNEL: 1577 case VAR_CHANNEL:
1578 case VAR_BLOB:
1578 break; 1579 break;
1579 } 1580 }
1580 } 1581 }
1581 1582
1582 /* Don't generate a prototype for the next function, it generates an error on 1583 /* Don't generate a prototype for the next function, it generates an error on