Index: mppenc/trunk/src/mppenc.c
===================================================================
--- mppenc/trunk/src/mppenc.c	(revision 98)
+++ mppenc/trunk/src/mppenc.c	(revision 99)
@@ -44,5 +44,4 @@
 int           APE_Version     = 2000;
 int           LowDelay        = 0;
-Bool_t        EnableTags      = 0;
 Bool_t        IsEndBeep       = 0;
 
@@ -221,5 +220,4 @@
              "                   abstract, bibliography, introplay, media, language, ...\n"
              "  --unicode        unicode input from console\n"
-             "  --writetags      enable tags                              (dflt: off)\n"
              "\n" );
 
@@ -1192,7 +1190,4 @@
         else if ( 0 == strcmp ( arg, "unicode") ) {                                  // no tag conversion
             NoUnicode = 0;
-        }
-        else if ( 0 == strcmp ( arg, "writetags") ) {
-            EnableTags = 1;
         }
         else if ( 0 == strcmp ( arg, "lowdelay") ) {
@@ -1876,6 +1871,5 @@
     UpdateHeader ( OutputFile, LastValidFrame, LastValidSamples );
 
-    if(EnableTags)
-        FinalizeTags ( OutputFile, APE_Version );
+    FinalizeTags ( OutputFile, APE_Version );
     fclose ( OutputFile );
     fclose ( Wave.fp );
Index: mppenc/trunk/src/tags.c
===================================================================
--- mppenc/trunk/src/tags.c	(revision 98)
+++ mppenc/trunk/src/tags.c	(revision 99)
@@ -1324,5 +1324,5 @@
     CopyTags_APE  (fp);                 // APE tags have higher priority than ID3V1 tags
     CopyTags_ID3  (fp);
-    CopyTags_Name (filename);
+    //CopyTags_Name (filename);
 
     fclose (fp);
