summaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-25 21:45:05 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-25 21:45:05 +0200
commit9af418427652562384744648d7d173a4bfebba95 (patch)
tree90d781691e7112ad8b3acd73d0fea202b558db80 /src/quickfix.c
parent20eeb6129d12a5d073ee949043de73242a36976c (diff)
downloadvim-git-9af418427652562384744648d7d173a4bfebba95.tar.gz
patch 8.0.0012v8.0.0012
Problem: Typos in comments. Solution: Change "its" to "it's". (Matthew Brener, closes #1088)
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index 2f5256be4..51c894bc6 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -3569,7 +3569,7 @@ get_mef_name(void)
STRCAT(name, p + 2);
if (mch_getperm(name) < 0
#ifdef HAVE_LSTAT
- /* Don't accept a symbolic link, its a security risk. */
+ /* Don't accept a symbolic link, it's a security risk. */
&& mch_lstat((char *)name, &sb) < 0
#endif
)