2003-02-14 Elena Zannoni <ezannoni@redhat.com>

From Brian Ford  <ford@vss.fsi.com>

	* cli/cli-decode.c (lookup_cmd_composition) [TUI]: Properly
	conditionalize tui_active test.
	(lookup_cmd_1): Ditto.
This commit is contained in:
Elena Zannoni 2003-02-14 20:36:58 +00:00
parent b0b1c2c0eb
commit 3b27aeeaa9
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2003-02-14 Elena Zannoni <ezannoni@redhat.com>
From Brian Ford <ford@vss.fsi.com>
* cli/cli-decode.c (lookup_cmd_composition) [TUI]: Properly
conditionalize tui_active test.
(lookup_cmd_1): Ditto.
2003-02-14 Mark Kettenis <kettenis@gnu.org>
* configure.in: Add check for _etext.

View File

@ -927,8 +927,10 @@ lookup_cmd_1 (char **text, struct cmd_list_element *clist,
`tui_version'. */
for (p = *text;
*p && (isalnum (*p) || *p == '-' || *p == '_' ||
#if defined(TUI)
(tui_active &&
(*p == '+' || *p == '<' || *p == '>' || *p == '$')) ||
#endif
(xdb_commands && (*p == '!' || *p == '/' || *p == '?')));
p++)
;
@ -1299,8 +1301,10 @@ lookup_cmd_composition (char *text,
`tui_version'. */
for (p = text;
*p && (isalnum (*p) || *p == '-' || *p == '_' ||
#if defined(TUI)
(tui_active &&
(*p == '+' || *p == '<' || *p == '>' || *p == '$')) ||
#endif
(xdb_commands && (*p == '!' || *p == '/' || *p == '?')));
p++)
;