summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.1293
blob: d37e6e3f4f79ae8447e9054f0b21ea58b7cf0e24 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
To: vim_dev@googlegroups.com
Subject: Patch 8.1.1293
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 8.1.1293
Problem:    MSVC files are no longer useful for debugging.  Newer Visual
            Studio versions cannot read them.
Solution:   Delete the files. (Ken Takata, closes #4357)
Files:	    Filelist, src/Make_dvc.mak, src/Make_ivc.mak,
            runtime/doc/debug.txt, src/INSTALLpc.txt, src/Make_mvc.mak


*** ../vim-8.1.1292/Filelist	2019-05-07 21:48:15.625291418 +0200
--- Filelist	2019-05-07 22:19:21.527914030 +0200
***************
*** 424,431 ****
  		src/Make_bc5.mak \
  		src/Make_cyg.mak \
  		src/Make_cyg_ming.mak \
- 		src/Make_ivc.mak \
- 		src/Make_dvc.mak \
  		src/Make_ming.mak \
  		src/Make_mvc.mak \
  		tools/rename.bat \
--- 424,429 ----
*** ../vim-8.1.1292/src/Make_dvc.mak	2010-05-15 13:04:10.000000000 +0200
--- src/Make_dvc.mak	1970-01-01 01:00:00.000000000 +0100
***************
*** 1,105 ****
- # Microsoft Developer Studio Generated NMAKE File, Format Version 4.00
- # ** DO NOT EDIT **
- 
- # TARGTYPE "Win32 (x86) Console Application" 0x0103
- 
- !IF "$(CFG)" == ""
- CFG=Vim - Win32 IDE for Make_mvc.mak
- !MESSAGE No configuration specified.  Defaulting to Vim - Win32 IDE for\
-  Make_mvc.mak.
- !ENDIF
- 
- !IF "$(CFG)" != "Vim - Win32 IDE for Make_mvc.mak"
- !MESSAGE Invalid configuration "$(CFG)" specified.
- !MESSAGE You can specify a configuration when running NMAKE on this makefile
- !MESSAGE by defining the macro CFG on the command line.  For example:
- !MESSAGE
- !MESSAGE NMAKE /f "Make_dvc.mak" CFG="Vim - Win32 IDE for Make_mvc.mak"
- !MESSAGE
- !MESSAGE Possible choices for configuration are:
- !MESSAGE
- !MESSAGE "Vim - Win32 IDE for Make_mvc.mak" (based on\
-  "Win32 (x86) Console Application")
- !MESSAGE 
- !ERROR An invalid configuration is specified.
- !ENDIF
- 
- !IF "$(OS)" == "Windows_NT"
- NULL=
- !ELSE
- NULL=nul
- !ENDIF
- ################################################################################
- # Begin Project
- # PROP Target_Last_Scanned "Vim - Win32 IDE for Make_mvc.mak"
- CPP=cl.exe
- RSC=rc.exe
- # PROP Use_MFC 0
- # PROP Use_Debug_Libraries 0
- # PROP Output_Dir ""
- # PROP Intermediate_Dir ""
- # PROP Target_Dir ""
- OUTDIR=.
- INTDIR=.
- 
- ALL : "$(OUTDIR)\vimrun.exe"
- 
- CLEAN :
- 	-@erase ".\vimrun.exe"
- 	-@erase ".\vimrun.obj"
- 
- # ADD CPP /nologo /c
- # ADD BASE RSC /l 0x809
- # ADD RSC /l 0x809 /d "NDEBUG"
- BSC32=bscmake.exe
- # ADD BSC32 /nologo
- BSC32_FLAGS=/nologo /o"$(OUTDIR)/Make_dvc.bsc"
- BSC32_SBRS=
- LINK32=link.exe
- # ADD BASE LINK32 /machine:IX86
- # ADD LINK32 /nologo /pdb:none /machine:IX86 /out:"vimrun.exe"
- LINK32_FLAGS=/nologo /pdb:none /machine:IX86 /out:"$(OUTDIR)/vimrun.exe"
- LINK32_OBJS= \
- 	"$(INTDIR)/vimrun.obj"
- 
- "$(OUTDIR)\vimrun.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-     $(LINK32) @<<
-   $(LINK32_FLAGS) $(LINK32_OBJS)
- <<
- 
- CPP_PROJ=/nologo /ML /c
- 
- .c.obj:
-    $(CPP) $(CPP_PROJ) $<
- 
- .cpp.obj:
-    $(CPP) $(CPP_PROJ) $<
- 
- .cxx.obj:
-    $(CPP) $(CPP_PROJ) $<
- 
- .c.sbr:
-    $(CPP) $(CPP_PROJ) $<
- 
- .cpp.sbr:
-    $(CPP) $(CPP_PROJ) $<
- 
- .cxx.sbr:
-    $(CPP) $(CPP_PROJ) $<
- 
- ################################################################################
- # Begin Target
- 
- # Name "Vim - Win32 IDE for Make_mvc.mak"
- ################################################################################
- # Begin Source File
- 
- SOURCE=.\vimrun.c
- 
- "$(INTDIR)\vimrun.obj" : $(SOURCE) "$(INTDIR)"
- 
- 
- # End Source File
- # End Target
- # End Project
- ################################################################################
--- 0 ----
*** ../vim-8.1.1292/src/Make_ivc.mak	2019-04-27 13:03:20.000715982 +0200
--- src/Make_ivc.mak	1970-01-01 01:00:00.000000000 +0100
***************
*** 1,778 ****
- # Microsoft Developer Studio Generated NMAKE File, Format Version 4.00
- # ** DO NOT EDIT **
- #
- # Make_ivc.mak Makefile to build vim in both IDE and nmake.
- # This file can be imported as a workspace into Visual Studio.  It must be in
- # DOS fileformat then!
- #
- # It is worth making the file read-only as the VC4 IDE will try to overwrite
- # it with a HUGELY expanded clone of itself.
- #
- # The following points are worth noting:
- # 1) Comments here are ignored by VC[456].0 IDEs
- # 2) # ADD LINK32 /pdb:.\Dbg/vimd.pdb is written so rather than
- #    # ADD LINK32 /pdb:".\Dbg/vimd.pdb" to avoid VC4 -> VC5 conversion failure
- # 3) It is good to delete .pdb file before linking to cope with switch among
- #    VC[456] as IDE clean action does not remove that file and link clashes
- #    with it. The following works in VC5 but not in VC4 which does not support
- #    pre-link actions. The nmake action does such deletions.
- # Begin Special Build Tool
- PreLink_Cmds=@if exist .\oleDbg\gvimd.pdb del .\oleDbg\gvimd.pdb
- # End Special Build Tool
- # 4) I was unable to make !IFDEF OLE, etc. work in the VC4 IDE.
- #    I was aiming for 4 configurations with sub-configurations selected by
- #    environment variables.
- # 5) Optimisation is not supported by disabled versions of VC. This results in
- #    messages for Release builds like:
- #      Command line warning D4025 : overriding '/O2' with '/Od'
- # 6) nmake 1.62 and later support batch compilation. I was unable to use this
- #    in a manner acceptable to earlier IDEs.
- #
- # History
- #
- # When       Who       What
- # 2001-07-06 W.Briscoe Original derived from Make_[go]vc.mak with less noise
- # 2001-07-08 W.Briscoe Further noise reduction; consistent .map and .pdb logic
- #		       Added install.exe rule, etc.; Removed unused libraries.
- # 2001-08-09 W.Briscoe Restored VC4.0-required trailing space in !MESSAGE afore
- #		       Enhanced if_ole.idl rule to use /out argument.
- #		       Default rules now relative to . to reduce IDE/nmake difs
- 
- # TARGTYPE "Win32 (x86) Console Application" 0x0103
- 
- !IF "$(CFG)" == ""
- CFG=Vim - Win32 Release gvim OLE
- !MESSAGE No configuration specified.  Defaulting to Vim - Win32 Release gvim OLE.
- !ENDIF
- 
- !IF "$(CFG)" != "Vim - Win32 Release gvim OLE"\
-  && "$(CFG)" != "Vim - Win32 Debug gvim OLE"\
-  && "$(CFG)" != "Vim - Win32 Release gvim"\
-  && "$(CFG)" != "Vim - Win32 Debug gvim"\
-  && "$(CFG)" != "Vim - Win32 Release vim"\
-  && "$(CFG)" != "Vim - Win32 Debug vim"
- !MESSAGE Invalid configuration "$(CFG)" specified.
- !MESSAGE You can specify a configuration when running NMAKE on this makefile
- !MESSAGE by defining the macro CFG on the command line.  For example:
- !MESSAGE
- !MESSAGE NMAKE /f "Make_ivc.mak" CFG="Vim - Win32 Debug vim"
- !MESSAGE
- !MESSAGE Possible choices for configuration are:
- !MESSAGE
- !MESSAGE "Vim - Win32 Release gvim OLE" (based on "Win32 (x86) Console Application")
- !MESSAGE "Vim - Win32 Debug gvim OLE"   (based on "Win32 (x86) Console Application")
- !MESSAGE "Vim - Win32 Release gvim"     (based on "Win32 (x86) Console Application")
- !MESSAGE "Vim - Win32 Debug gvim"       (based on "Win32 (x86) Console Application")
- !MESSAGE "Vim - Win32 Release vim"      (based on "Win32 (x86) Console Application")
- !MESSAGE "Vim - Win32 Debug vim"        (based on "Win32 (x86) Console Application")
- !MESSAGE 
- !ERROR An invalid configuration is specified.
- !ENDIF
- 
- !IF "$(OS)" == "Windows_NT"
- NULL=
- DEL_TREE = rmdir /s /q
- !ELSE
- NULL=nul
- DEL_TREE = deltree /y
- !ENDIF
- 
- # Begin Project
- # PROP Target_Last_Scanned "Vim - Win32 Debug vim"
- # PROP Use_MFC 0
- 
- RSC=rc.exe
- CPP=cl.exe
- LINK32=link.exe
- 
- CPP_PROJ= /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c
- # ADD CPP /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c
- 
- LINK32_FLAGS= oldnames.lib kernel32.lib user32.lib gdi32.lib version.lib comdlg32.lib comctl32.lib advapi32.lib shell32.lib ole32.lib netapi32.lib uuid.lib /nologo /machine:I386 /nodefaultlib
- # ADD LINK32  oldnames.lib kernel32.lib user32.lib gdi32.lib version.lib comdlg32.lib comctl32.lib advapi32.lib shell32.lib ole32.lib uuid.lib /nologo /machine:I386 /nodefaultlib
- # SUBTRACT LINK32 /incremental:yes
- 
- RSC_PROJ= /l 0x409 /d "FEAT_GUI_MSWIN"
- # ADD RSC /l 0x409 /d "FEAT_GUI_MSWIN"
- 
- !IF  "$(CFG)" == "Vim - Win32 Release gvim OLE"
- 
- # PROP Use_Debug_Libraries 0
- # PROP Output_Dir .\oleRel
- # PROP Intermediate_Dir .\oleRel
- 
- INTDIR=.\oleRel
- VIM=gvim
- EXTRAS="$(INTDIR)/if_ole.obj" "$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj"
- 
- CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleRel/ /Fo.\oleRel/
- # ADD CPP            /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleRel/ /Fo.\oleRel/
- 
- RSC_PROJ=$(RSC_PROJ) /I ".\oleRel" /d "NDEBUG" /d "FEAT_OLE" /fo.\oleRel\vim.res
- # ADD RSC            /I ".\oleRel" /d "NDEBUG" /d "FEAT_OLE" /fo.\oleRel\vim.res
- 
- LINK32_FLAGS=$(LINK32_FLAGS) /pdb:.\oleRel/gvim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvim.map libc.lib oleaut32.lib /subsystem:windows /out:.\gvim.exe
- # ADD LINK32                 /pdb:.\oleRel/gvim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvim.map libc.lib oleaut32.lib /subsystem:windows /out:.\gvim.exe
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug gvim OLE"
- 
- # PROP Use_Debug_Libraries 1
- # PROP Output_Dir .\oleDbg
- # PROP Intermediate_Dir .\oleDbg
- 
- INTDIR=.\oleDbg
- VIM=gvimd
- EXTRAS="$(INTDIR)/if_ole.obj" "$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj"
- 
- CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/
- # ADD CPP            /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/
- 
- RSC_PROJ=$(RSC_PROJ) /I .\oleDbg /d "_DEBUG" /d "FEAT_OLE" /fo.\oleDbg\vim.res
- # ADD RSC            /I .\oleDbg /d "_DEBUG" /d "FEAT_OLE" /fo.\oleDbg\vim.res
- 
- LINK32_FLAGS=$(LINK32_FLAGS) libcd.lib oleaut32.lib /subsystem:windows /debug /profile /pdb:.\oleDbg/gvimd.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvimd.map /out:.\gvimd.exe
- # ADD LINK32                 libcd.lib oleaut32.lib /subsystem:windows /debug /profile /pdb:.\oleDbg/gvimd.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvimd.map /out:.\gvimd.exe
- 
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Release gvim"
- 
- # PROP Use_Debug_Libraries 0
- # PROP Output_Dir .\gRel
- # PROP Intermediate_Dir .\gRel
- 
- INTDIR=.\gRel
- VIM=gvim
- EXTRAS="$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj"
- 
- CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /Fd.\gRel/ /Fo.\gRel/
- # ADD CPP            /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /Fd.\gRel/ /Fo.\gRel/
- 
- RSC_PROJ=$(RSC_PROJ) /d "NDEBUG" /fo.\gRel\vim.res
- # ADD RSC            /d "NDEBUG" /fo.\gRel\vim.res
- 
- LINK32_FLAGS=$(LINK32_FLAGS) /pdb:.\gRel/gvim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvim.map libc.lib /subsystem:windows /out:.\gvim.exe
- # ADD LINK32                 /pdb:.\gRel/gvim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvim.map libc.lib /subsystem:windows /out:.\gvim.exe
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug gvim"
- 
- # PROP Use_Debug_Libraries 1
- # PROP Output_Dir .\gDbg
- # PROP Intermediate_Dir .\gDbg
- 
- INTDIR=.\gDbg
- VIM=gvimd
- EXTRAS="$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj"
- 
- CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /Fd.\gDbg/ /Fo.\gDbg/
- # ADD CPP            /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /Fd.\gDbg/ /Fo.\gDbg/
- 
- RSC_PROJ=$(RSC_PROJ) /d "_DEBUG" /fo.\gDbg\vim.res
- # ADD RSC            /d "_DEBUG" /fo.\gDbg\vim.res
- 
- LINK32_FLAGS=$(LINK32_FLAGS) libcd.lib /subsystem:windows /debug /profile /pdb:.\gDbg/gvimd.pdb -debug:full -debugtype:cv,fixup /map:.\gDbg\gvimd.map /out:.\gvimd.exe
- # ADD LINK32                 libcd.lib /subsystem:windows /debug /profile /pdb:.\gDbg/gvimd.pdb -debug:full -debugtype:cv,fixup /map:.\gDbg\gvimd.map /out:.\gvimd.exe
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Release vim"
- 
- # PROP Use_Debug_Libraries 0
- # PROP Output_Dir .\Rel
- # PROP Intermediate_Dir .\Rel
- 
- INTDIR=.\Rel
- VIM=vim
- EXTRAS=
- 
- CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /Fd.\Rel/ /Fo.\Rel/
- # ADD CPP            /Zi /O2 /D "NDEBUG" /Fd.\Rel/ /Fo.\Rel/
- 
- LINK32_FLAGS=$(LINK32_FLAGS) /pdb:.\Rel/vim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\vim.map libc.lib /subsystem:console /out:.\vim.exe
- # ADD LINK32                 /pdb:.\Rel/vim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\vim.map libc.lib /subsystem:console /out:.\vim.exe
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug vim"
- 
- # PROP Use_Debug_Libraries 1
- # PROP Output_Dir .\Dbg
- # PROP Intermediate_Dir .\Dbg
- 
- INTDIR=.\Dbg
- VIM=vimd
- EXTRAS=
- 
- CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /Fd.\Dbg/ /Fo.\Dbg/
- # ADD CPP            /Zi /Od /D "_DEBUG" /Fd.\Dbg/ /Fo.\Dbg/
- 
- LINK32_FLAGS=$(LINK32_FLAGS) libcd.lib /subsystem:console /debug /profile /pdb:.\Dbg/vimd.pdb -debug:full -debugtype:cv,fixup /map:.\Dbg/vimd.map /out:.\vimd.exe
- # ADD LINK32                 libcd.lib /subsystem:console /debug /profile /pdb:.\Dbg/vimd.pdb -debug:full -debugtype:cv,fixup /map:.\Dbg/vimd.map /out:.\vimd.exe
- 
- !ENDIF
- 
- ALL : .\$(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe GvimExt/gvimext.dll
- 
- LINK32_OBJS= \
- 	$(EXTRAS) \
- 	"$(INTDIR)/arabic.obj" \
- 	"$(INTDIR)/autocmd.obj" \
- 	"$(INTDIR)/blowfish.obj" \
- 	"$(INTDIR)/buffer.obj" \
- 	"$(INTDIR)/charset.obj" \
- 	"$(INTDIR)/crypt.obj" \
- 	"$(INTDIR)/crypt_zip.obj" \
- 	"$(INTDIR)/debugger.obj" \
- 	"$(INTDIR)/dict.obj" \
- 	"$(INTDIR)/diff.obj" \
- 	"$(INTDIR)/digraph.obj" \
- 	"$(INTDIR)/edit.obj" \
- 	"$(INTDIR)/eval.obj" \
- 	"$(INTDIR)/evalfunc.obj" \
- 	"$(INTDIR)/ex_cmds.obj" \
- 	"$(INTDIR)/ex_cmds2.obj" \
- 	"$(INTDIR)/ex_docmd.obj" \
- 	"$(INTDIR)/ex_eval.obj" \
- 	"$(INTDIR)/ex_getln.obj" \
- 	"$(INTDIR)/fileio.obj" \
- 	"$(INTDIR)/findfile.obj" \
- 	"$(INTDIR)/fold.obj" \
- 	"$(INTDIR)/getchar.obj" \
- 	"$(INTDIR)/hardcopy.obj" \
- 	"$(INTDIR)/hashtab.obj" \
- 	"$(INTDIR)/indent.obj" \
- 	"$(INTDIR)/insexpand.obj" \
- 	"$(INTDIR)/json.obj" \
- 	"$(INTDIR)/list.obj" \
- 	"$(INTDIR)/main.obj" \
- 	"$(INTDIR)/mark.obj" \
- 	"$(INTDIR)/mbyte.obj" \
- 	"$(INTDIR)/memfile.obj" \
- 	"$(INTDIR)/memline.obj" \
- 	"$(INTDIR)/menu.obj" \
- 	"$(INTDIR)/message.obj" \
- 	"$(INTDIR)/misc1.obj" \
- 	"$(INTDIR)/misc2.obj" \
- 	"$(INTDIR)/move.obj" \
- 	"$(INTDIR)/normal.obj" \
- 	"$(INTDIR)/ops.obj" \
- 	"$(INTDIR)/option.obj" \
- 	"$(INTDIR)/os_mswin.obj" \
- 	"$(INTDIR)/winclip.obj" \
- 	"$(INTDIR)/os_win32.obj" \
- 	"$(INTDIR)/popupmnu.obj" \
- 	"$(INTDIR)/quickfix.obj" \
- 	"$(INTDIR)/regexp.obj" \
- 	"$(INTDIR)/screen.obj" \
- 	"$(INTDIR)/search.obj" \
- 	"$(INTDIR)/sha256.obj" \
- 	"$(INTDIR)/sign.obj" \
- 	"$(INTDIR)/spell.obj" \
- 	"$(INTDIR)/spellfile.obj" \
- 	"$(INTDIR)/syntax.obj" \
- 	"$(INTDIR)/tag.obj" \
- 	"$(INTDIR)/term.obj" \
- 	"$(INTDIR)/ui.obj" \
- 	"$(INTDIR)/undo.obj" \
- 	"$(INTDIR)/usercmd.obj" \
- 	"$(INTDIR)/userfunc.obj" \
- 	"$(INTDIR)/version.obj" \
- 	"$(INTDIR)/window.obj"
- 
- ".\$(VIM).exe" : "$(INTDIR)" $(EXTRAS) $(LINK32_OBJS)
- 	@if exist $(INTDIR)\$(VIM).pdb del $(INTDIR)\$(VIM).pdb
- 	$(LINK32) $(LINK32_FLAGS) $(LINK32_OBJS)
- 
- "$(INTDIR)" :
- 	if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
- 
- CLEAN :
- 	-@if exist "$(INTDIR)/$(NULL)" $(DEL_TREE) "$(INTDIR)"
- 	-@if exist $(VIM).exe erase $(VIM).exe
- 	-@if exist $(VIM).ilk erase $(VIM).ilk
- 	-@if exist $(VIM).map erase $(VIM).map
- 	-@if exist $(VIM).pdb erase $(VIM).pdb
- 	-@if exist DLLDATA.C erase DLLDATA.C
- 	-@if exist Make_ivc.bak attrib -r Make_ivc.bak
- 	-@if exist Make_ivc.bak erase Make_ivc.bak
- 	-@if exist Make_ivc.dsp erase Make_ivc.dsp
- 	-@if exist Make_ivc.dsw erase Make_ivc.dsw
- 	-@if exist Make_ivc.mdp erase Make_ivc.mdp
- 	-@if exist Make_ivc.ncb erase Make_ivc.ncb
- 	-@if exist Make_ivc.opt erase Make_ivc.opt
- 	-@if exist Make_ivc.plg erase Make_ivc.plg
- 	-@if exist dosinst.obj erase dosinst.obj
- 	-@if exist install.exe erase install.exe
- 	-@if exist uninstal.exe erase uninstal.exe
- 	-@if exist uninstal.obj erase uninstal.obj
- 	-@if exist vimrun.exe erase vimrun.exe
- 	-@if exist vimrun.obj erase vimrun.obj
- 
- 
- install.exe: dosinst.c
- 	$(CPP) /Fe$@ /nologo /W3 -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib user32.lib ole32.lib advapi32.lib uuid.lib
- 
- uninstal.exe: uninstal.c
- 	$(CPP) /nologo /W3 -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
- 
- vimrun.exe: vimrun.c
- 	$(CPP) /nologo /W3 -DNDEBUG vimrun.c
- 
- xxd/xxd.exe: xxd/xxd.c
- 	cd xxd
- 	$(MAKE) /NOLOGO -f Make_mvc.mak
- 	cd ..
- 
- GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
- 	cd GvimExt
- 	$(MAKE) /NOLOGO -f Makefile
- 	cd ..
- 
- {.}.c{$(INTDIR)/}.obj:
- 	$(CPP) $(CPP_PROJ) $<
- 
- {.}.cpp{$(INTDIR)/}.obj:
- 	$(CPP) $(CPP_PROJ) /I $(INTDIR) $<
- 
- {.}.rc{$(INTDIR)/}.res:
- 	$(RSC) $(RSC_PROJ) $<
- 
- # Begin Target
- 
- # Name "Vim - Win32 Release gvim OLE"
- # Name "Vim - Win32 Debug gvim OLE"
- # Name "Vim - Win32 Release gvim"
- # Name "Vim - Win32 Debug gvim"
- # Name "Vim - Win32 Release vim"
- # Name "Vim - Win32 Debug vim"
- 
- # Begin Source File
- 
- SOURCE=.\arabic.c
- # End Source File
- # Begin Source File
- #
- SOURCE=.\autocmd.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\blowfish.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\buffer.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\charset.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\crypt.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\crypt_zip.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\debugger.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\dict.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\diff.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\digraph.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\edit.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\eval.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\evalfunc.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\ex_cmds.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\ex_cmds2.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\ex_docmd.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\ex_eval.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\ex_getln.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\fileio.c
- # End Source File
- # Begin Source File
- #
- SOURCE=.\findfile.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\fold.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\getchar.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\hardcopy.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\hashtab.c
- # End Source File
- # Begin Source File
- #
- SOURCE=.\indent.c
- # End Source File
- # Begin Source File
- #
- SOURCE=.\insexpand.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\gui.c
- 
- !IF      "$(CFG)" == "Vim - Win32 Release vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ENDIF
- 
- # End Source File
- # Begin Source File
- 
- SOURCE=.\gui_w32.c
- 
- !IF      "$(CFG)" == "Vim - Win32 Release vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ENDIF
- 
- # End Source File
- # Begin Source File
- 
- SOURCE=.\gui_beval.c
- 
- !IF      "$(CFG)" == "Vim - Win32 Release vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ENDIF
- 
- # End Source File
- # Begin Source File
- 
- SOURCE=.\os_w32exe.c
- 
- !IF      "$(CFG)" == "Vim - Win32 Release vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ENDIF
- 
- # End Source File
- # Begin Source File
- 
- SOURCE=.\if_ole.cpp
- 
- !IF  "$(CFG)" == "Vim - Win32 Release gvim OLE"
- 
- # PROP Ignore_Default_Tool 1
- # Begin Custom Build
- 
- "$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
-  cl.exe /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /D "FEAT_OLE" /Fd.\oleRel/ /Fo.\oleRel/ /I ".\oleRel" .\if_ole.cpp
-  @rem This is the default rule with /I "$(IntDir)" added
- 
- # End Custom Build
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug gvim OLE"
- 
- # PROP Ignore_Default_Tool 1
- # Begin Custom Build
- 
- "$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
-  cl.exe /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/ /I ".\oleDbg" .\if_ole.cpp
-  @rem This is the default rule with /I "$(IntDir)" added
- 
- # End Custom Build
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Release gvim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug gvim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Release vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ENDIF
- 
- # End Source File
- # Begin Source File
- 
- SOURCE=.\if_ole.idl
- 
- !IF  "$(CFG)" == "Vim - Win32 Release gvim OLE"
- 
- # PROP Ignore_Default_Tool 1
- # Begin Custom Build
- 
- "$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)"
- 	if exist .\if_ole.h del .\if_ole.h
- 	midl /out .\oleRel /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl
- 
- # End Custom Build
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug gvim OLE"
- 
- # PROP Ignore_Default_Tool 1
- # Begin Custom Build
- 
- "$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)"
- 	if exist .\if_ole.h del .\if_ole.h
- 	midl /out .\oleDbg /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl
- 
- # End Custom Build
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Release gvim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug gvim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Release vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ENDIF
- 
- # End Source File
- # Begin Source File
- 
- SOURCE=.\json.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\list.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\main.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\mark.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\mbyte.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\memfile.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\memline.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\menu.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\message.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\misc1.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\misc2.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\move.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\normal.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\ops.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\option.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\os_mswin.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\winclip.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\os_win32.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\popupmnu.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\quickfix.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\regexp.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\screen.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\search.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\sha256.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\sign.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\spell.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\spellfile.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\syntax.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\tag.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\term.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\ui.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\undo.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\usercmd.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\userfunc.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\version.c
- # End Source File
- # Begin Source File
- 
- SOURCE=.\vim.rc
- 
- !IF  "$(CFG)" == "Vim - Win32 Release gvim OLE"
- 
- "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug gvim OLE"
- 
- "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Release gvim"
- 
- "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)"
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug gvim"
- 
- "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)"
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Release vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ELSEIF  "$(CFG)" == "Vim - Win32 Debug vim"
- 
- # PROP Exclude_From_Build 1
- 
- !ENDIF
- 
- # End Source File
- # Begin Source File
- 
- SOURCE=.\window.c
- # End Source File
- # End Target
- # End Project
--- 0 ----
*** ../vim-8.1.1292/runtime/doc/debug.txt	2019-05-05 18:11:46.308590707 +0200
--- runtime/doc/debug.txt	2019-05-07 22:22:23.675047276 +0200
***************
*** 78,87 ****
  If you built the executable yourself with the Microsoft Visual C++ compiler,
  then the PDB was built with the EXE.
  
- Alternatively, if you have the source files, you can import Make_ivc.mak into
- Visual Studio as a workspace.  Then select a debug configuration, build and
- you can do all kinds of debugging (set breakpoints, watch variables, etc.).
- 
  If you have Visual Studio, use that instead of the VC Toolkit and WinDbg.
  
  For other compilers, you should always use the corresponding debugger: TD for
--- 78,83 ----
*** ../vim-8.1.1292/src/INSTALLpc.txt	2019-04-04 20:31:59.094873282 +0200
--- src/INSTALLpc.txt	2019-05-07 22:23:32.266713984 +0200
***************
*** 81,101 ****
  				Perl, Python, etc.
  
  Make_mvc.mak allows a Vim to be built with various different features and
! debug support.  Debugging with MS Devstudio is provided by Make_dvc.mak.
! For a description of the use of Make_dvc.mak, look in Make_mvc.mak.
  
  For compiling Gvim with IME support on far-east Windows, add IME=yes
  to the parameters you pass to Make_mvc.mak.
  
- To build Vim from within the Visual Studio IDE, open the Make_ivc.mak project.
- (Note: Make_ivc.mak is not as rich as Make_mvc.mak, which allows for
- far more configuration.) Make_ivc.mak can also be built with nmake.
- 
- nmake -f Make_ivc.mak CFG="Vim - Win32 Release gvim"
- 				GUI	  Microsoft Visual C++ 4.x or later
- nmake -f Make_ivc.mak CFG="Vim - Win32 Release gvim OLE"
- 				OLE	  Microsoft Visual C++ 4.x or later
- 
  See the specific files for comments and options.
  
  These files have been supplied by George V. Reilly, Ben Singer, Ken Scott and
--- 81,91 ----
  				Perl, Python, etc.
  
  Make_mvc.mak allows a Vim to be built with various different features and
! debug support.
  
  For compiling Gvim with IME support on far-east Windows, add IME=yes
  to the parameters you pass to Make_mvc.mak.
  
  See the specific files for comments and options.
  
  These files have been supplied by George V. Reilly, Ben Singer, Ken Scott and
*** ../vim-8.1.1292/src/Make_mvc.mak	2019-05-03 22:14:59.452363625 +0200
--- src/Make_mvc.mak	2019-05-07 22:24:28.786437049 +0200
***************
*** 143,179 ****
  #
  # Example: To build the non-debug, GUI version with Perl interface:
  #	nmake -f Make_mvc.mak GUI=yes PERL=C:\Perl
- #
- # DEBUG with Make_mvc.mak and Make_dvc.mak:
- #	This makefile gives a fineness of control which is not supported in
- #	Visual C++ configuration files.  Therefore, debugging requires a bit of
- #	extra work.
- #	Make_dvc.mak is a Visual C++ project to access that support.  It may be
- #	badly out of date for the Visual C++ you are using...
- #	To use Make_dvc.mak:
- #	1) Build Vim with Make_mvc.mak.
- #	     Use a "DEBUG=yes" argument to build Vim with debug support.
- #	     E.g. the following builds gvimd.exe:
- #		nmake -f Make_mvc.mak debug=yes gui=yes
- #	2) Use MS Devstudio and set it up to allow that file to be debugged:
- #	    i) Pass Make_dvc.mak to the IDE.
- #		 Use the "open workspace" menu entry to load Make_dvc.mak.
- #		 Alternatively, from the command line:
- #			msdev /nologo Make_dvc.mak
- #		Note: Make_dvc.mak is in VC4.0 format. Later VC versions see
- #		this and offer to convert it to their own format. Accept that.
- #		It creates a file called Make_dvc.dsw which can then be used
- #		for further operations.  E.g.
- #		    msdev /nologo Make_dvc.dsw
- #	    ii) Set the built executable for debugging:
- #		a) Alt+F7/Debug takes you to the Debug dialog.
- #		b) Fill "Executable for debug session". e.g. gvimd.exe
- #		c) Fill "Program arguments". e.g. -R dosinst.c
- #		d) Complete the dialog
- #	3) You can now debug the executable you built with Make_mvc.mak
- #
- #	Note: Make_dvc.mak builds vimrun.exe, because it must build something
- #	to be a valid makefile..
  
  ### See feature.h for a list of optionals.
  # If you want to build some optional features without modifying the source,
--- 143,148 ----
*** ../vim-8.1.1292/src/version.c	2019-05-07 22:10:47.082118240 +0200
--- src/version.c	2019-05-07 22:24:34.878407086 +0200
***************
*** 769,770 ****
--- 769,772 ----
  {   /* Add new patch number below this line */
+ /**/
+     1293,
  /**/

-- 
A special cleaning ordinance bans housewives from hiding dirt and dust under a
rug in a dwelling.
		[real standing law in Pennsylvania, United States of America]

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///