get rid of global "struct bb_applet *current_applet"

diff --git a/libbb/appletlib.c b/libbb/appletlib.c
index 565dacf..cfa60a9 100644
--- a/libbb/appletlib.c
+++ b/libbb/appletlib.c
@@ -133,7 +133,10 @@
 	if (ENABLE_LOCALE_SUPPORT && getpid() != 1)
 		setlocale(LC_ALL, "");
 
-	/* Redundant for busybox, but needed for individual applets */
+#if ENABLE_FEATURE_INDIVIDUAL
+	/* Redundant for busybox (run_applet_and_exit covers that case)
+	 * but needed for "individual applet" mode */
 	if (argv[1] && strcmp(argv[1], "--help") == 0)
 		bb_show_usage();
+#endif
 }