summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-08-10 06:42:05 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-08-10 06:42:05 (GMT)
commit20fd74ff24e59cc7716ff4b2b1707a9df253b22c (patch)
tree204dafb414bbd678921df8d71bc16c39da8e50f8 /win
parent4ffe7c28ee0ab1fa2d8b5d9b38e7e2edde3e4c05 (diff)
downloadtk-20fd74ff24e59cc7716ff4b2b1707a9df253b22c.zip
tk-20fd74ff24e59cc7716ff4b2b1707a9df253b22c.tar.gz
tk-20fd74ff24e59cc7716ff4b2b1707a9df253b22c.tar.bz2
Remove end-of-line spacing
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc6
-rw-r--r--win/nmakehlp.c8
2 files changed, 7 insertions, 7 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 2382cad..a216b2f 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -66,8 +66,8 @@
# c:\tcl_src\win\>nmake -f makefile.vc test
# Install Tk in location specified by INSTALLDIR macro
# c:\tcl_src\win\>nmake -f makefile.vc install INSTALLDIR=c:\progra~1\tcl
-# Build release with PDF files
-# c:\tcl_src\win\>nmake -f makefile.vc release OPTS=pdbs
+# Build release with PDF files
+# c:\tcl_src\win\>nmake -f makefile.vc release OPTS=pdbs
# Build debug version
# c:\tcl_src\win\>nmake -f makefile.vc release OPTS=symbols
#
@@ -321,7 +321,7 @@ CONFIG_DEFS =-DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 \
-DTTK_SQUARE_WIDGET=1 \
!endif
!if $(TK_NO_DEPRECATED)
- -DTK_NO_DEPRECATED=1
+ -DTK_NO_DEPRECATED=1
!endif
PRJ_DEFINES = -DBUILD_ttk $(CONFIG_DEFS) -Dinline=__inline -D _CRT_SECURE_NO_DEPRECATE -D _CRT_NONSTDC_NO_DEPRECATE
diff --git a/win/nmakehlp.c b/win/nmakehlp.c
index 025bb99..4e3d792 100644
--- a/win/nmakehlp.c
+++ b/win/nmakehlp.c
@@ -739,7 +739,7 @@ static int LocateDependencyHelper(const char *dir, const char *keypath)
#if 0 /* This function is not available in Visual C++ 6 */
/*
* Use numerics 0 -> FindExInfoStandard,
- * 1 -> FindExSearchLimitToDirectories,
+ * 1 -> FindExSearchLimitToDirectories,
* as these are not defined in Visual C++ 6
*/
hSearch = FindFirstFileEx(path, 0, &finfo, 1, NULL, 0);
@@ -754,7 +754,7 @@ static int LocateDependencyHelper(const char *dir, const char *keypath)
do {
int sublen;
/*
- * We need to check it is a directory despite the
+ * We need to check it is a directory despite the
* FindExSearchLimitToDirectories in the above call. See SDK docs
*/
if ((finfo.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
@@ -785,7 +785,7 @@ static int LocateDependencyHelper(const char *dir, const char *keypath)
* that is used to confirm it is the correct directory.
* The search path for the package directory is currently only
* the parent and grandparent of the current working directory.
- * If found, the command prints
+ * If found, the command prints
* name_DIRPATH=<full path of located directory>
* and returns 0. If not found, does not print anything and returns 1.
*/
@@ -793,7 +793,7 @@ static int LocateDependency(const char *keypath)
{
int i, ret;
static char *paths[] = {"..", "..\\..", "..\\..\\.."};
-
+
for (i = 0; i < (sizeof(paths)/sizeof(paths[0])); ++i) {
ret = LocateDependencyHelper(paths[i], keypath);
if (ret == 0)