comparison src/console.c @ 282:c42ec1d1cded r21-0b39

Import from CVS: tag r21-0b39
author cvs
date Mon, 13 Aug 2007 10:33:18 +0200
parents c5d627a313b1
children 1d62742628b6
comparison
equal deleted inserted replaced
281:090b52736db2 282:c42ec1d1cded
269 struct device *d = XDEVICE (device); 269 struct device *d = XDEVICE (device);
270 Lisp_Object frame = DEVICE_SELECTED_FRAME (d); 270 Lisp_Object frame = DEVICE_SELECTED_FRAME (d);
271 if (!NILP (frame)) 271 if (!NILP (frame))
272 { 272 {
273 struct frame *f = XFRAME(frame); 273 struct frame *f = XFRAME(frame);
274 Fselect_window (FRAME_SELECTED_WINDOW (f)); 274 Fselect_window (FRAME_SELECTED_WINDOW (f), Qnil);
275 } 275 }
276 else 276 else
277 error ("Can't select console with no frames."); 277 error ("Can't select console with no frames.");
278 } 278 }
279 else 279 else