2002-10-23 Michael Snyder * printcmd.c (address_info): Restore quotes in output. * valops.c (value_of_local): Restore quotes in error message. Index: printcmd.c =================================================================== RCS file: /cvs/src/src/gdb/printcmd.c,v retrieving revision 1.46 diff -p -r1.46 printcmd.c *** printcmd.c 21 Oct 2002 19:11:50 -0000 1.46 --- printcmd.c 23 Oct 2002 21:27:36 -0000 *************** address_info (char *exp, int from_tty) *** 1106,1114 **** current_language->la_language, DMGL_ANSI); printf_filtered ("\" is a field of the local class variable "); if (current_language->la_language == language_objc) ! printf_filtered ("'self'\n"); /* ObjC equivalent of "this" */ else ! printf_filtered ("'this'\n"); return; } --- 1106,1114 ---- current_language->la_language, DMGL_ANSI); printf_filtered ("\" is a field of the local class variable "); if (current_language->la_language == language_objc) ! printf_filtered ("`self'\n"); /* ObjC equivalent of "this" */ else ! printf_filtered ("`this'\n"); return; } Index: valops.c =================================================================== RCS file: /cvs/src/src/gdb/valops.c,v retrieving revision 1.77 diff -p -r1.77 valops.c *** valops.c 23 Oct 2002 19:22:28 -0000 1.77 --- valops.c 23 Oct 2002 21:27:38 -0000 *************** value_of_local (const char *name, int co *** 3330,3336 **** if (!func) { if (complain) ! error ("no %s in nameless context", name); else return 0; } --- 3330,3336 ---- if (!func) { if (complain) ! error ("no `%s' in nameless context", name); else return 0; } *************** value_of_local (const char *name, int co *** 3340,3346 **** if (i <= 0) { if (complain) ! error ("no args, no '%s'", name); else return 0; } --- 3340,3346 ---- if (i <= 0) { if (complain) ! error ("no args, no `%s'", name); else return 0; } *************** value_of_local (const char *name, int co *** 3351,3364 **** if (sym == NULL) { if (complain) ! error ("current stack frame does not contain a variable named \"%s\"", name); else return NULL; } ret = read_var_value (sym, selected_frame); if (ret == 0 && complain) ! error ("%s argument unreadable", name); return ret; } --- 3351,3364 ---- if (sym == NULL) { if (complain) ! error ("current stack frame does not contain a variable named `%s'", name); else return NULL; } ret = read_var_value (sym, selected_frame); if (ret == 0 && complain) ! error ("`%s' argument unreadable", name); return ret; }