diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-22 23:13:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-22 23:13:33 +0100 |
commit | eed284a16977ab81fa6da8c9562990ba498acd8c (patch) | |
tree | 881c7f7fae1f8bf0f906662e0bb2e99cb6fcc4e8 /src/netbeans.c | |
parent | 0b962473ddc7cee3cb45253dea273573bcca9bf9 (diff) | |
download | vim-git-eed284a16977ab81fa6da8c9562990ba498acd8c.tar.gz |
patch 7.4.1395v7.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.
Diffstat (limited to 'src/netbeans.c')
-rw-r--r-- | src/netbeans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbeans.c b/src/netbeans.c index 55169ea2a..05142a8b0 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -461,7 +461,7 @@ nb_parse_cmd(char_u *cmd) /* NOTREACHED */ } - if (STRCMP(cmd, "\"DETACH\"") == 0) + if (STRCMP(cmd, "DETACH") == 0) { buf_T *buf; |