Common subdirectories: crash-6.0.5/extensions and crash-6.0.5-new/extensions
diff -u crash-6.0.5/help.c crash-6.0.5-new/help.c
--- crash-6.0.5/help.c	2012-04-06 11:24:05.000000000 +0200
+++ crash-6.0.5-new/help.c	2012-04-15 22:42:35.000000000 +0200
@@ -5782,6 +5782,8 @@
 "case, as long as a kernel variable/structure/union name is different than any",
 "of the current commands, the appropriate command above will be executed.  If",
 "not, the command will be passed on to the built-in gdb command for execution.",
+"",
+"If the first charactere of a command is #, it will be seen as a comment.",
 NULL
 };
 
diff -u crash-6.0.5/main.c crash-6.0.5-new/main.c
--- crash-6.0.5/main.c	2012-03-23 16:45:06.000000000 +0100
+++ crash-6.0.5-new/main.c	2012-04-15 22:36:34.000000000 +0200
@@ -768,6 +768,9 @@
         if (is_datatype_command()) 
                 goto reattempt;
 
+	if (STRNEQ(args[0], "#"))
+		return;
+
 	if (!(pc->flags & MINIMAL_MODE) &&
 	    is_gdb_command(TRUE, FAULT_ON_ERROR)) 
 		goto reattempt;
Common subdirectories: crash-6.0.5/memory_driver and crash-6.0.5-new/memory_driver
