summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2005-03-24 20:01:34 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2005-03-24 20:01:34 +0000
commit4f83cb5485e6f9a8c714e22f2cc058f4346ef489 (patch)
treea33d1648ce557f6f3bef295910ae76ef66cf5784
parent87ba72b4faf4e6e056089bcbe2a8946fc6f1582a (diff)
downloademacs-4f83cb5485e6f9a8c714e22f2cc058f4346ef489.tar.gz
(print_object): Delete `\ ' from printed rep of frame.
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index bd0546895f6..ea3d22d25a4 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1764,7 +1764,7 @@ print_object (obj, printcharfun, escapeflag)
? "#<frame " : "#<dead frame "),
-1, -1, printcharfun, 0);
print_string (XFRAME (obj)->name, printcharfun);
- sprintf (buf, " 0x%lx\\ ", (unsigned long) (XFRAME (obj)));
+ sprintf (buf, " 0x%lx", (unsigned long) (XFRAME (obj)));
strout (buf, -1, -1, printcharfun, 0);
PRINTCHAR ('>');
}