Mercurial > hg > xemacs-beta
comparison src/keymap.c @ 5120:d1247f3cc363 ben-lisp-object
latest work on lisp-object workspace;
more changes eliminating LCRECORD in place of LISP_OBJECT;
now compiles and runs.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Mon, 28 Dec 2009 01:15:52 -0600 |
parents | e0db3c197671 |
children | 623d57b7fbe8 |
comparison
equal
deleted
inserted
replaced
5119:d877c14318b3 | 5120:d1247f3cc363 |
---|---|
146 | 146 |
147 */ | 147 */ |
148 | 148 |
149 struct Lisp_Keymap | 149 struct Lisp_Keymap |
150 { | 150 { |
151 struct LCRECORD_HEADER header; | 151 LISP_OBJECT_HEADER header; |
152 Lisp_Object parents; /* Keymaps to be searched after this one. | 152 Lisp_Object parents; /* Keymaps to be searched after this one. |
153 An ordered list */ | 153 An ordered list */ |
154 Lisp_Object prompt; /* Qnil or a string to print in the minibuffer | 154 Lisp_Object prompt; /* Qnil or a string to print in the minibuffer |
155 when reading from this keymap */ | 155 when reading from this keymap */ |
156 Lisp_Object table; /* The contents of this keymap */ | 156 Lisp_Object table; /* The contents of this keymap */ |