Mercurial > hg > xemacs-beta
comparison src/msdos.c @ 203:850242ba4a81 r20-3b28
Import from CVS: tag r20-3b28
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:02:21 +0200 |
parents | 3d6bfa290dbd |
children | c5d627a313b1 |
comparison
equal
deleted
inserted
replaced
202:61eefc8fc970 | 203:850242ba4a81 |
---|---|
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.\n\ | 1128 Return vector of last 100 keyboard input values seen in dos_rawgetc. |
1129 Each input key receives two values in this vector: first the ASCII code,\n\ | 1129 Each input key receives two values in this vector: first the ASCII code, |
1130 and then the scan code. | 1130 and then the scan code. |
1131 */ | 1131 */ |
1132 ()) | 1132 ()) |
1133 { | 1133 { |
1134 Lisp_Object *keys = XVECTOR_DATA (recent_doskeys); | 1134 Lisp_Object *keys = XVECTOR_DATA (recent_doskeys); |