2008-09-01 Colin D Bennett <colin@gibibit.com>

* include/grub/normal.h: Fixed incorrect comment for
	GRUB_COMMAND_FLAG_NO_ARG_PARSE.
This commit is contained in:
chaac 2008-09-01 19:03:16 +00:00
parent f06199587d
commit a0224a4e62
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-09-01 Colin D Bennett <colin@gibibit.com>
* include/grub/normal.h: Fixed incorrect comment for
GRUB_COMMAND_FLAG_NO_ARG_PARSE.
2008-09-01 Colin D Bennett <colin@gibibit.com> 2008-09-01 Colin D Bennett <colin@gibibit.com>
* commands/i386/pc/vbeinfo.c (grub_cmd_vbeinfo): Replaced constant * commands/i386/pc/vbeinfo.c (grub_cmd_vbeinfo): Replaced constant

View file

@ -39,7 +39,7 @@
#define GRUB_COMMAND_FLAG_TITLE 0x4 #define GRUB_COMMAND_FLAG_TITLE 0x4
/* Don't print the command on booting. */ /* Don't print the command on booting. */
#define GRUB_COMMAND_FLAG_NO_ECHO 0x8 #define GRUB_COMMAND_FLAG_NO_ECHO 0x8
/* Don't print the command on booting. */ /* Pass arguments to the command without parsing options. */
#define GRUB_COMMAND_FLAG_NO_ARG_PARSE 0x10 #define GRUB_COMMAND_FLAG_NO_ARG_PARSE 0x10
/* Not loaded yet. Used for auto-loading. */ /* Not loaded yet. Used for auto-loading. */
#define GRUB_COMMAND_FLAG_NOT_LOADED 0x20 #define GRUB_COMMAND_FLAG_NOT_LOADED 0x20