summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/express.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-05-05 01:10:40 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-05-05 01:10:40 +0000
commit72d8b1db585768db90f38411e108e706ceee7320 (patch)
treeb925639e4117f95ce89db793a4441614c68233a9 /src/emu/debug/express.c
parent0eae440981787f0c77f6cf3255591dbb36ec8e96 (diff)
Cleanups and version bump.
Diffstat (limited to 'src/emu/debug/express.c')
-rw-r--r--src/emu/debug/express.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/emu/debug/express.c b/src/emu/debug/express.c
index a539713c926..07ef01d69b1 100644
--- a/src/emu/debug/express.c
+++ b/src/emu/debug/express.c
@@ -1982,17 +1982,17 @@ int symtable_add(symbol_table *table, const char *name, const symbol_entry *entr
/* we cannot add numeric symbols */
/*
- all_digits = TRUE;
- for (i = 0; name[i]; i++)
- {
- if (!isdigit((UINT8)name[i]))
- {
- all_digits = FALSE;
- break;
- }
- }
- assert_always(!all_digits, "All-digit symbols are not allowed");
- */
+ all_digits = TRUE;
+ for (i = 0; name[i]; i++)
+ {
+ if (!isdigit((UINT8)name[i]))
+ {
+ all_digits = FALSE;
+ break;
+ }
+ }
+ assert_always(!all_digits, "All-digit symbols are not allowed");
+ */
/* see if we already have an entry and just overwrite it if we do */
oldentry = (symbol_entry *)symtable_find(table, name);