/* Return type of print_string_repr. */
-enum string_repr_result
+enum guile_string_repr_result
{
/* The string method returned None. */
STRING_REPR_NONE,
/* Helper for gdbscm_apply_val_pretty_printer which calls to_string and
formats the result. */
-static enum string_repr_result
+static enum guile_string_repr_result
ppscm_print_string_repr (SCM printer, enum display_hint hint,
struct ui_file *stream, int recurse,
const struct value_print_options *options,
{
struct value *replacement = NULL;
SCM str_scm;
- enum string_repr_result result = STRING_REPR_ERROR;
+ enum guile_string_repr_result result = STRING_REPR_ERROR;
str_scm = ppscm_pretty_print_one_value (printer, &replacement,
gdbarch, language);
SCM val_obj = SCM_BOOL_F;
enum display_hint hint;
enum ext_lang_rc result = EXT_LANG_RC_NOP;
- enum string_repr_result print_result;
+ enum guile_string_repr_result print_result;
if (value_lazy (value))
value_fetch_lazy (value);
/* Return type of print_string_repr. */
-enum string_repr_result
+enum gdbpy_string_repr_result
{
/* The string method returned None. */
string_repr_none,
/* Helper for gdbpy_apply_val_pretty_printer which calls to_string and
formats the result. */
-static enum string_repr_result
+static enum gdbpy_string_repr_result
print_string_repr (PyObject *printer, const char *hint,
struct ui_file *stream, int recurse,
const struct value_print_options *options,
struct gdbarch *gdbarch)
{
struct value *replacement = NULL;
- enum string_repr_result result = string_repr_ok;
+ enum gdbpy_string_repr_result result = string_repr_ok;
gdbpy_ref<> py_str = pretty_print_one_value (printer, &replacement);
if (py_str != NULL)
{
struct type *type = value_type (value);
struct gdbarch *gdbarch = type->arch ();
- enum string_repr_result print_result;
+ enum gdbpy_string_repr_result print_result;
if (value_lazy (value))
value_fetch_lazy (value);