diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2012-08-05 19:47:28 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2012-08-05 19:47:28 +0400 |
commit | 663e2b3f88f9be61399e06dfc0b76700f90c6ca6 (patch) | |
tree | 71e48dfc0079f80f2089b5bdebe991a200d594ed /src/macros.c | |
parent | 777fe95e05ab77e77e4ecee45382ec64d381c776 (diff) | |
download | emacs-663e2b3f88f9be61399e06dfc0b76700f90c6ca6.tar.gz |
Generalize common compile-time constants.
* lisp.h (header_size, bool_header_size, word_size): Now here.
(struct Lisp_Vector): Add comment.
(struct Lisp_Bool_Vector): Move up to define handy constants.
(VECSIZE, PSEUDOVECSIZE): Simplify.
(SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
* buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
* font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
* msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
* xfont.c, xmenu.c: Use word_size where appropriate.
Diffstat (limited to 'src/macros.c')
-rw-r--r-- | src/macros.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macros.c b/src/macros.c index a07d8ddbd23..8a4361fc1f6 100644 --- a/src/macros.c +++ b/src/macros.c @@ -63,7 +63,7 @@ macro before appending to it. */) if (!current_kboard->kbd_macro_buffer) { - current_kboard->kbd_macro_buffer = xmalloc (30 * sizeof (Lisp_Object)); + current_kboard->kbd_macro_buffer = xmalloc (30 * word_size); current_kboard->kbd_macro_bufsize = 30; } update_mode_lines++; @@ -73,7 +73,7 @@ macro before appending to it. */) { current_kboard->kbd_macro_buffer = xrealloc (current_kboard->kbd_macro_buffer, - 30 * sizeof (Lisp_Object)); + 30 * word_size); current_kboard->kbd_macro_bufsize = 30; } current_kboard->kbd_macro_ptr = current_kboard->kbd_macro_buffer; |