Mercurial > hg > xemacs-beta
comparison src/keymap.c @ 24:4103f0995bd7 r19-15b95
Import from CVS: tag r19-15b95
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:51:03 +0200 |
parents | 8fc7fe29b841 |
children | 7e54bd776075 |
comparison
equal
deleted
inserted
replaced
23:0edd3412f124 | 24:4103f0995bd7 |
---|---|
2108 int i; | 2108 int i; |
2109 | 2109 |
2110 if (nkeys == 0) | 2110 if (nkeys == 0) |
2111 return Qnil; | 2111 return Qnil; |
2112 | 2112 |
2113 if (nkeys > (countof (kkk))) | 2113 if (nkeys < (countof (kkk))) |
2114 raw_keys = kkk; | 2114 raw_keys = kkk; |
2115 else | 2115 else |
2116 raw_keys = (struct key_data *) alloca (sizeof (struct key_data) * nkeys); | 2116 raw_keys = (struct key_data *) alloca (sizeof (struct key_data) * nkeys); |
2117 | 2117 |
2118 for (i = 0; i < nkeys; i++) | 2118 for (i = 0; i < nkeys; i++) |