Index: kernel/generic/src/debug/symtab.c
===================================================================
--- kernel/generic/src/debug/symtab.c	(revision f0d7bd959c3be29cd9d56901480b064516cd54ec)
+++ kernel/generic/src/debug/symtab.c	(revision 550af2b9b95db1cff1171a60c5d1b0b41ea88a40)
@@ -255,10 +255,6 @@
 	/* If possible completions are more than MAX_TAB_HINTS, ask user whether to display them or not. */
 	if (found > MAX_TAB_HINTS) {
-		printf("\nDisplay all %zu possibilities? (y or n)", found);
-		wchar_t display;
-		do {
-			display = indev_pop_character(indev);
-		} while (display != 'y' && display != 'n' && display != 'Y' && display != 'N');
-		continue_showing_hints = (display == 'y') || (display == 'Y');
+		printf("\n");
+		continue_showing_hints = console_prompt_display_all_hints(indev, found);
 	}
 	
