aboutsummaryrefslogtreecommitdiff
path: root/gdb/printcmd.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2002-10-23 21:33:07 +0000
committerMichael Snyder <msnyder@vmware.com>2002-10-23 21:33:07 +0000
commit2625d86c4672d9354fe1887fed190507c3e82119 (patch)
tree39ac14b54d7652fe9f576022be6f784f4eb60fe1 /gdb/printcmd.c
parent6ad4a2cfb3c7a64bff8df4750c03f796b9a431c4 (diff)
downloadfsf-binutils-gdb-2625d86c4672d9354fe1887fed190507c3e82119.zip
fsf-binutils-gdb-2625d86c4672d9354fe1887fed190507c3e82119.tar.gz
fsf-binutils-gdb-2625d86c4672d9354fe1887fed190507c3e82119.tar.bz2
2002-10-23 Michael Snyder <msnyder@redhat.com>
* printcmd.c (address_info): Restore quotes in output. * valops.c (value_of_local): Restore quotes in error message.
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r--gdb/printcmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c
index 2bf5fdf..28697f2 100644
--- a/gdb/printcmd.c
+++ b/gdb/printcmd.c
@@ -1106,9 +1106,9 @@ address_info (char *exp, int from_tty)
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" */
+ printf_filtered ("`self'\n"); /* ObjC equivalent of "this" */
else
- printf_filtered ("'this'\n");
+ printf_filtered ("`this'\n");
return;
}