_notify_fail: notify_fail rufen.

Die Funktion muss das alte NF nicht selber suchen,
sondern kann es notify_fail() ueberlassen. Ein
NF_NL_NONE als Prioritaet ueberschreibt kein
existierendes NF.

Change-Id: Ib28c75e312833bdc26a0d7fad65071ff81934ba0
diff --git a/secure/simul_efun/simul_efun.c b/secure/simul_efun/simul_efun.c
index a25980b..f4b69c0 100644
--- a/secure/simul_efun/simul_efun.c
+++ b/secure/simul_efun/simul_efun.c
@@ -1623,15 +1623,7 @@
 
 void _notify_fail(string|closure str)
 {
-  //query_notify_fail() benutzen, um das Objekt
-  //des letzten notify_fail() zu ermitteln
-  object o;
-  if ((o=query_notify_fail(1)) && o!=previous_object())
-    return;
-  //noch kein notify_fail() fuer dieses Kommando gesetzt, auf gehts.
-  set_this_object(previous_object());
-  efun::notify_fail(str);
-  return;
+  notify_fail(str, NF_NL_NONE);
 }
 
 string time2string( string format, int zeit )