diff -ru sox.20050917-inst3/src/interactive.c sox.20050917-inst4/src/interactive.c
--- sox.20050917-inst3/src/interactive.c	2005-10-27 17:46:59.000000000 +0200
+++ sox.20050917-inst4/src/interactive.c	2006-05-28 21:24:24.000000000 +0200
@@ -337,7 +337,8 @@
 							if (ntime != -1.0) time = ntime; break;
 			case '.': case '>': case 'N':	ntime = tag_jump(time, 'N');
 							if (ntime != -1.0) time = ntime; break;
-			case 'd':			tag_delete(time); tag_display(win, time); break;
+			case 'd':			tag_delete(time, 5 /* s */); tag_display(win, time); break;
+			case 'D':			tag_delete(time, 5000 /* s */); tag_display(win, time); break;
 #endif
 
 			case KEY_RESIZE:
Pliki binarne sox.20050917-inst3/src/interactive.o i sox.20050917-inst4/src/interactive.o się różnią
Pliki binarne sox.20050917-inst3/src/sox i sox.20050917-inst4/src/sox się różnią
Pliki binarne sox.20050917-inst3/src/soxmix i sox.20050917-inst4/src/soxmix się różnią
diff -ru sox.20050917-inst3/src/tag.c sox.20050917-inst4/src/tag.c
--- sox.20050917-inst3/src/tag.c	2006-04-17 12:18:13.000000000 +0200
+++ sox.20050917-inst4/src/tag.c	2006-05-28 21:21:05.000000000 +0200
@@ -130,11 +130,11 @@
 }
 
 void
-tag_delete(float time) {
+tag_delete(float time, float range) {
 	int	itime, jtime;
 
 	itime = tag_search(time) - 1;
-	if ( (itime >= 0) && (time - tags[itime].time <= 5) ) {
+	if ( (itime >= 0) && (time - tags[itime].time <= range) ) {
 		for (jtime = itime; jtime < ntag - 1; jtime++) tags[jtime] = tags[jtime + 1];
 		ntag--;
 		tag_save(tagfile);
diff -ru sox.20050917-inst3/src/tag.h sox.20050917-inst4/src/tag.h
--- sox.20050917-inst3/src/tag.h	2005-09-21 00:50:25.000000000 +0200
+++ sox.20050917-inst4/src/tag.h	2006-05-28 21:23:03.000000000 +0200
@@ -33,7 +33,7 @@
 void tag_add(float time, char type);
 void tag_display(WINDOW *win, float time);
 float tag_jump(float time, char type);
-void tag_delete(float time);
+void tag_delete(float time, float range);
 int tag_search(float time);
 
 #endif /* TAG_H_INCLUDED */
Pliki binarne sox.20050917-inst3/src/tag.o i sox.20050917-inst4/src/tag.o się różnią
