-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimdoc.diff
More file actions
41 lines (35 loc) · 1.32 KB
/
vimdoc.diff
File metadata and controls
41 lines (35 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 9ea0ae82c..371de4b2c 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -1,4 +1,4 @@
-*builtin.txt* For Vim version 9.2. Last change: 2026 Apr 21
+*builtin.txt* For Vim version 9.2. Last change: 2026 Apr 26
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -11317,7 +11317,12 @@ strptime({format}, {timestring}) *strptime()*
can try different {format} values until you get a non-zero
result.
+ Note: On MS-Windows, where the C runtime does not provide
+ strptime(), Vim uses a built-in fallback that always uses
+ English locale names regardless of the active locale.
+
See also |strftime()|.
+
Examples: >
:echo strptime("%Y %b %d %X", "1997 Apr 27 11:49:23")
< 862156163 >
diff --git a/runtime/doc/version9.txt b/runtime/doc/version9.txt
index 16ed792f9..43106ef30 100644
--- a/runtime/doc/version9.txt
+++ b/runtime/doc/version9.txt
@@ -1,4 +1,4 @@
-*version9.txt* For Vim version 9.2. Last change: 2026 Apr 25
+*version9.txt* For Vim version 9.2. Last change: 2026 Apr 26
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -52622,6 +52622,7 @@ Other ~
Platform specific ~
-----------------
- support OpenType font features in 'guifont' for DirectWrite (Win32)
+- Include strptime() fallback for MS-Windows
xxd ~
---