summaryrefslogtreecommitdiff
path: root/gdb/scm-valprint.c
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1995-11-30 03:10:59 +0000
committerPer Bothner <per@bothner.com>1995-11-30 03:10:59 +0000
commitdcdba37e2d5970979f1d87cef209495aae83f94c (patch)
treec3e9e34886d4b856ebf51ca2d01aa46514832cf1 /gdb/scm-valprint.c
parentb18319318b4b69be9fb1b834846414981238bc12 (diff)
downloadbinutils-gdb-dcdba37e2d5970979f1d87cef209495aae83f94c.tar.gz
* scm-valprint.c (scm_isymnames): Remove "#@" prefix.
(scm_scmval_print): Do not print "#@" prefix. * mdebugread.c: Add check_typedef/CHECK_TYPEDEF as needed.
Diffstat (limited to 'gdb/scm-valprint.c')
-rw-r--r--gdb/scm-valprint.c37
1 files changed, 18 insertions, 19 deletions
diff --git a/gdb/scm-valprint.c b/gdb/scm-valprint.c
index de59220de5f..8544870efab 100644
--- a/gdb/scm-valprint.c
+++ b/gdb/scm-valprint.c
@@ -49,26 +49,26 @@ scm_inferior_print (value, stream, format, deref_ref, recurse, pretty)
static char *scm_isymnames[] =
{
/* This table must agree with the declarations */
- "#@and",
- "#@begin",
- "#@case",
- "#@cond",
- "#@do",
- "#@if",
- "#@lambda",
- "#@let",
- "#@let*",
- "#@letrec",
- "#@or",
- "#@quote",
- "#@set!",
- "#@define",
+ "and",
+ "begin",
+ "case",
+ "cond",
+ "do",
+ "if",
+ "lambda",
+ "let",
+ "let*",
+ "letrec",
+ "or",
+ "quote",
+ "set!",
+ "define",
#if 0
- "#@literal-variable-ref",
- "#@literal-variable-set!",
+ "literal-variable-ref",
+ "literal-variable-set!",
#endif
- "#@apply",
- "#@call-with-current-continuation",
+ "apply",
+ "call-with-current-continuation",
/* user visible ISYMS */
/* other keywords */
@@ -178,7 +178,6 @@ scm_scmval_print (svalue, stream, format, deref_ref, recurse, pretty)
break;
case 1:
/* gloc */
- fputs_filtered ("#@", stream);
svalue = SCM_CAR (svalue - 1);
goto taloop;
default: