Mercurial > hg > xemacs-beta
changeset 5212:4f98237e23fc
Automated merge with ssh://sperber-guest@hg.debian.org//hg/xemacs/xemacs
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 16 May 2010 12:49:49 +0100 |
parents | 23f00bfd78a4 (diff) cdca98f2d36f (current diff) |
children | 7abb91db1e64 2157ecaedc1d |
files | src/ChangeLog |
diffstat | 2 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sun May 16 12:33:21 2010 +0100 +++ b/src/ChangeLog Sun May 16 12:49:49 2010 +0100 @@ -166,6 +166,12 @@ various hash methods with the correct number of arguments, fixing the Win32 build. Thank you Vin. +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. + 2010-04-04 Ben Wing <ben@xemacs.org> * font-mgr.c:
--- a/src/frame.c Sun May 16 12:33:21 2010 +0100 +++ b/src/frame.c Sun May 16 12:49:49 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)); }