commit | 93c88e0f6a4a8f7634ed84721daf4af46fc0d5db | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Sep 15 14:12:05 2015 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Sep 15 14:12:05 2015 +0200 |
tree | b325606d26d69c3804a9007cf7d1fa4a8034f4aa | |
parent | ed84b76021df763619cabaedddc44eb5ee849136 [diff] [blame] |
patch 7.4.866 Problem: Crash when changing the 'tags' option from a remote command. (Benjamin Fritz) Solution: Instead of executing messages immediately, use a queue, like for netbeans. (James Kolb)
diff --git a/src/macros.h b/src/macros.h index f70e206..caaca9a 100644 --- a/src/macros.h +++ b/src/macros.h
@@ -321,3 +321,7 @@ #else # define PLINES_NOFILL(x) plines(x) #endif + +#if defined(FEAT_NETBEANS_INTG) || defined(FEAT_CLIENTSERVER) +# define MESSAGE_QUEUE +#endif