commit | eed284a16977ab81fa6da8c9562990ba498acd8c | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Feb 22 23:13:33 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Feb 22 23:13:33 2016 +0100 |
tree | 881c7f7fae1f8bf0f906662e0bb2e99cb6fcc4e8 | |
parent | 0b962473ddc7cee3cb45253dea273573bcca9bf9 [diff] [blame] |
patch 7.4.1395 Problem: Using DETACH in quotes is not compatible with the Netbeans interface. (Xavier de Gaye) Solution: Remove the quotes, only use them for JSON and JS mode.
diff --git a/src/netbeans.c b/src/netbeans.c index 55169ea..05142a8 100644 --- a/src/netbeans.c +++ b/src/netbeans.c
@@ -461,7 +461,7 @@ /* NOTREACHED */ } - if (STRCMP(cmd, "\"DETACH\"") == 0) + if (STRCMP(cmd, "DETACH") == 0) { buf_T *buf;