comparison src/device-tty.c @ 288:e11d67e05968 r21-0b42

Import from CVS: tag r21-0b42
author cvs
date Mon, 13 Aug 2007 10:35:54 +0200
parents 558f606b08ae
children 74fd4e045ea6
comparison
equal deleted inserted replaced
287:13a0bd77a29d 288:e11d67e05968
188 switch (m) 188 switch (m)
189 { 189 {
190 case DM_size_device: 190 case DM_size_device:
191 return Fcons (make_int (CONSOLE_TTY_DATA (con)->width), 191 return Fcons (make_int (CONSOLE_TTY_DATA (con)->width),
192 make_int (CONSOLE_TTY_DATA (con)->height)); 192 make_int (CONSOLE_TTY_DATA (con)->height));
193 break; 193 default: /* No such device metric property for TTY devices */
194 return Qunbound;
194 } 195 }
195
196 /* Do not know such property */
197 return Qunbound;
198 } 196 }
199 197
200 /************************************************************************/ 198 /************************************************************************/
201 /* initialization */ 199 /* initialization */
202 /************************************************************************/ 200 /************************************************************************/