comparison src/os_win32.c @ 23229:b545334ae654 v8.2.2160

patch 8.2.2160: various typos Commit: https://github.com/vim/vim/commit/8e7d6223f630690b72b387eaed704bf01f3f29d2 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 18 19:49:56 2020 +0100 patch 8.2.2160: various typos Problem: Various typos. Solution: Fix spelling mistakes. (closes https://github.com/vim/vim/issues/7494)
author Bram Moolenaar <Bram@vim.org>
date Fri, 18 Dec 2020 20:00:06 +0100
parents fb27d3a7a24b
children 7237ed5f89bd
comparison
equal deleted inserted replaced
23228:2c76cf162844 23229:b545334ae654
7111 } 7111 }
7112 7112
7113 /* 7113 /*
7114 * SUB STREAM (aka info stream) handling: 7114 * SUB STREAM (aka info stream) handling:
7115 * 7115 *
7116 * NTFS can have sub streams for each file. Normal contents of file is 7116 * NTFS can have sub streams for each file. The normal contents of a file is
7117 * stored in the main stream, and extra contents (author information and 7117 * stored in the main stream, and extra contents (author information, title and
7118 * title and so on) can be stored in sub stream. After Windows 2000, user 7118 * so on) can be stored in a sub stream. After Windows 2000, the user can
7119 * can access and store those informations in sub streams via explorer's 7119 * access and store this information in sub streams via an explorer's property
7120 * property menuitem in right click menu. Those informations in sub streams 7120 * menu item in the right click menu. This information in sub streams was lost
7121 * were lost when copying only the main stream. So we have to copy sub 7121 * when copying only the main stream. Therefore we have to copy sub streams.
7122 * streams.
7123 * 7122 *
7124 * Incomplete explanation: 7123 * Incomplete explanation:
7125 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp 7124 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
7126 * More useful info and an example: 7125 * More useful info and an example:
7127 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams 7126 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams