comparison src/window.c @ 203:850242ba4a81 r20-3b28

Import from CVS: tag r20-3b28
author cvs
date Mon, 13 Aug 2007 10:02:21 +0200
parents eb5470882647
children 41ff10fd062f
comparison
equal deleted inserted replaced
202:61eefc8fc970 203:850242ba4a81
1550 The second argument is the new value for the dedication flag; 1550 The second argument is the new value for the dedication flag;
1551 non-nil means yes. 1551 non-nil means yes.
1552 */ 1552 */
1553 (window, arg)) 1553 (window, arg))
1554 { 1554 {
1555 register struct window *w = decode_window (window); 1555 REGISTER struct window *w = decode_window (window);
1556 1556
1557 w->dedicated = NILP (arg) ? Qnil : Qt; 1557 w->dedicated = NILP (arg) ? Qnil : Qt;
1558 1558
1559 return w->dedicated; 1559 return w->dedicated;
1560 } 1560 }