* grub-core/commands/echo.c (grub_cmd_echo): Call grub_refresh()
after printing a message.
+2010-11-30 Robert Millan <rmh@gnu.org>
+
+ * grub-core/commands/echo.c (grub_cmd_echo): Call grub_refresh()
+ after printing a message.
+
2010-11-23 Colin Watson <cjwatson@ubuntu.com>
* include/grub/gpt_partition.h (GRUB_GPT_PARTITION_TYPE_BIOS_BOOT):
/* echo.c - Command to display a line of text */
/*
* GRUB -- GRand Unified Bootloader
- * Copyright (C) 2006,2007 Free Software Foundation, Inc.
+ * Copyright (C) 2006,2007,2010 Free Software Foundation, Inc.
*
* GRUB is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
if (newline)
grub_printf ("\n");
+ grub_refresh ();
+
return 0;
}