comparison src/evalfunc.c @ 25953:d7e1cf30728c v8.2.3510

patch 8.2.3510: changes are only detected with one second accuracy Commit: https://github.com/vim/vim/commit/0a7984af5601323fae7b3398f05a48087db7b767 Author: Leah Neukirchen <leah@vuxu.org> Date: Thu Oct 14 21:27:55 2021 +0100 patch 8.2.3510: changes are only detected with one second accuracy Problem: Changes are only detected with one second accuracy. Solution: Use the nanosecond time if possible. (Leah Neukirchen, closes #8873, closes #8875)
author Bram Moolenaar <Bram@vim.org>
date Thu, 14 Oct 2021 22:30:04 +0200
parents 29bbe650f2a1
children e8873138ffbb
comparison
equal deleted inserted replaced
25952:7eded0585ee0 25953:d7e1cf30728c
5477 1 5477 1
5478 #else 5478 #else
5479 0 5479 0
5480 #endif 5480 #endif
5481 }, 5481 },
5482 {"nanotime",
5483 #ifdef ST_MTIM_NSEC
5484 1
5485 #else
5486 0
5487 #endif
5488 },
5482 {"num64", 1}, 5489 {"num64", 1},
5483 {"ole", 5490 {"ole",
5484 #ifdef FEAT_OLE 5491 #ifdef FEAT_OLE
5485 1 5492 1
5486 #else 5493 #else