comparison src/console-x.c @ 5097:4a6b680a9577

merge
author Ben Wing <ben@xemacs.org>
date Thu, 04 Mar 2010 07:26:05 -0600
parents 99f8ebc082d9
children 308d34e9f07d
comparison
equal deleted inserted replaced
5096:e0587c615e8b 5097:4a6b680a9577
238 { 238 {
239 int hostname_length, display_length, screen_length; 239 int hostname_length, display_length, screen_length;
240 240
241 split_up_display_spec (connection, &hostname_length, &display_length, 241 split_up_display_spec (connection, &hostname_length, &display_length,
242 &screen_length); 242 &screen_length);
243 hostname = Fsubstring (connection, Qzero, make_int (hostname_length)); 243 hostname = Fsubseq (connection, Qzero, make_int (hostname_length));
244 hostname = canonicalize_host_name (hostname); 244 hostname = canonicalize_host_name (hostname);
245 connection = concat2 (hostname, 245 connection = concat2 (hostname,
246 make_string (XSTRING_DATA (connection) 246 make_string (XSTRING_DATA (connection)
247 + hostname_length, display_length)); 247 + hostname_length, display_length));
248 } 248 }