summaryrefslogtreecommitdiffstats
path: root/generic/tkTextDisp.c
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2023-01-14 11:10:28 (GMT)
committerfvogel <fvogelnew1@free.fr>2023-01-14 11:10:28 (GMT)
commitcdc8d2fa8d71e9a6f9e452006cc7b10acc9ab930 (patch)
tree6ab96bcbd5bdc6edfaaa6ad37e52bbeb066e98a1 /generic/tkTextDisp.c
parent2d4a3f8ce9a84fd47a0b8586f5b2f62c282a3c95 (diff)
downloadtk-cdc8d2fa8d71e9a6f9e452006cc7b10acc9ab930.zip
tk-cdc8d2fa8d71e9a6f9e452006cc7b10acc9ab930.tar.gz
tk-cdc8d2fa8d71e9a6f9e452006cc7b10acc9ab930.tar.bz2
Factorise definition of snprintf in tkWinInt.h (MSVC before 2015 didn't know snprintf).
Diffstat (limited to 'generic/tkTextDisp.c')
-rw-r--r--generic/tkTextDisp.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/generic/tkTextDisp.c b/generic/tkTextDisp.c
index 3c2c799..b23c6f2 100644
--- a/generic/tkTextDisp.c
+++ b/generic/tkTextDisp.c
@@ -29,14 +29,6 @@
#define OK_TO_LOG 1
#endif
-#ifdef _MSC_VER
-/*
- * Earlier versions of MSVC don't know snprintf, but _snprintf is compatible.
- * Note that sprintf is deprecated.
- */
-# define snprintf _snprintf
-#endif
-
/*
* "Calculations of line pixel heights and the size of the vertical
* scrollbar."