diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-03-16 06:53:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-03-16 06:53:35 +0000 |
commit | aab3aa14610915debebae1081eb206e7b7e4c11a (patch) | |
tree | aa0a1fe5c8df44b5e7140ddf703a0370bc50d86f /src/print.c | |
parent | 95f433f40b56144b5714993f4d4d951c1a24c471 (diff) | |
download | emacs-aab3aa14610915debebae1081eb206e7b7e4c11a.tar.gz |
(print_object): Delete `\ ' from printed rep of frame.
Diffstat (limited to 'src/print.c')
-rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index 6f9d4a0120c..17f01522d52 100644 --- a/src/print.c +++ b/src/print.c @@ -1779,7 +1779,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 ('>'); } |