Mercurial > hg > xemacs-beta
diff src/frame.c @ 5209:94982b8f9485
When printing a frame, print its device, making things clearer with gnuserv
2010-04-06 Aidan Kehoe <kehoea@parhasard.net>
* frame.c (print_frame):
When printing a frame, print its device, making the output of
#'frame-list a lot more helpful if using gnuclient.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Tue, 06 Apr 2010 16:32:42 +0100 |
parents | 9e0b43d3095c |
children | 3889ef128488 308d34e9f07d |
line wrap: on
line diff
--- a/src/frame.c Mon Apr 05 13:03:35 2010 +0100 +++ b/src/frame.c Tue Apr 06 16:32:42 2010 +0100 @@ -642,6 +642,8 @@ write_fmt_string (printcharfun, "#<%s-frame ", !FRAME_LIVE_P (frm) ? "dead" : FRAME_TYPE_NAME (frm)); print_internal (frm->name, printcharfun, 1); + write_ascstring (printcharfun, " on "); + print_internal (frm->device, printcharfun, 0); write_fmt_string (printcharfun, " 0x%x>", LISP_OBJECT_UID (obj)); }