comparison src/msdos.c @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents 859a2309aef8
children 8eaf7971accc
comparison
equal deleted inserted replaced
69:804d1389bcd6 70:131b0175ea99
1123 int recent_doskeys_index; /* Index for storing next element into recent_doskeys */ 1123 int recent_doskeys_index; /* Index for storing next element into recent_doskeys */
1124 int total_doskeys; /* Total number of elements stored into recent_doskeys */ 1124 int total_doskeys; /* Total number of elements stored into recent_doskeys */
1125 Lisp_Object recent_doskeys; /* A vector, holding the last 100 keystrokes */ 1125 Lisp_Object recent_doskeys; /* A vector, holding the last 100 keystrokes */
1126 1126
1127 DEFUN ("recent-doskeys", Frecent_doskeys, 0, 0, 0, /* 1127 DEFUN ("recent-doskeys", Frecent_doskeys, 0, 0, 0, /*
1128 Return vector of last 100 keyboard input values seen in dos_rawgetc. 1128 Return vector of last 100 keyboard input values seen in dos_rawgetc.\n\
1129 Each input key receives two values in this vector: first the ASCII code, 1129 Each input key receives two values in this vector: first the ASCII code,\n\
1130 and then the scan code. 1130 and then the scan code.
1131 */ 1131 */
1132 ()) 1132 ())
1133 { 1133 {
1134 Lisp_Object *keys = XVECTOR (recent_doskeys)->contents; 1134 Lisp_Object *keys = XVECTOR (recent_doskeys)->contents;