diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
commit | 84a05acc8c341c2be383198496764992ae971a46 (patch) | |
tree | 061887e2e1327a2d0c688cba306b8ec66b3f8477 /src/memfile.c | |
parent | 84e0f6ca9adcbdca254060713878ebc29faaaa65 (diff) | |
download | vim-git-84a05acc8c341c2be383198496764992ae971a46.tar.gz |
updated for version 7.3.925v7.3.925
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
Diffstat (limited to 'src/memfile.c')
-rw-r--r-- | src/memfile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/memfile.c b/src/memfile.c index c87b98113..58f448576 100644 --- a/src/memfile.c +++ b/src/memfile.c @@ -628,7 +628,7 @@ mf_sync(mfp, flags) * sync from the system itself). */ # if defined(__EMX__) - error "Dont use fsync with EMX! Read emxdoc.doc or emxfix01.doc for info." + error "Don't use fsync with EMX! Read emxdoc.doc or emxfix01.doc for info." # endif if (STRCMP(p_sws, "fsync") == 0) { @@ -1075,7 +1075,7 @@ mf_write(mfp, hp) if (nr > mfp->mf_infile_count) /* beyond end of file */ { nr = mfp->mf_infile_count; - hp2 = mf_find_hash(mfp, nr); /* NULL catched below */ + hp2 = mf_find_hash(mfp, nr); /* NULL caught below */ } else hp2 = hp; @@ -1184,7 +1184,7 @@ mf_trans_add(mfp, hp) { new_bnum = freep->bh_bnum; /* - * If the page count of the free block was larger, recude it. + * If the page count of the free block was larger, reduce it. * If the page count matches, remove the block from the free list */ if (freep->bh_page_count > page_count) @@ -1309,7 +1309,7 @@ mf_do_open(mfp, fname, flags) mf_set_ffname(mfp); #if defined(MSDOS) || defined(MSWIN) /* - * A ":!cd e:xxx" may change the directory without us knowning, use the + * A ":!cd e:xxx" may change the directory without us knowing, use the * full pathname always. Careful: This frees fname! */ mf_fullname(mfp); |