diff options
| author | Stefan Monnier | 2004-01-21 04:32:19 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-01-21 04:32:19 +0000 |
| commit | d4f8198baf47d674798cf6fdb7df44ca92e33a40 (patch) | |
| tree | 1c2e2b3483eb957c6fd1f9e58f2884baf4345216 /src | |
| parent | 9aa0928de798d02fb15ce3158d9625c86db2d137 (diff) | |
| download | emacs-d4f8198baf47d674798cf6fdb7df44ca92e33a40.tar.gz emacs-d4f8198baf47d674798cf6fdb7df44ca92e33a40.zip | |
(buffer_defaults, buffer_local_symbols): Use DECL_ALIGN.
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index b4c530d49fd..fa5a9c85c2d 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Buffer manipulation primitives for GNU Emacs. | 1 | /* Buffer manipulation primitives for GNU Emacs. |
| 2 | Copyright (C) 1985,86,87,88,89,93,94,95,97,98, 1999, 2000, 2001, 02, 2003 | 2 | Copyright (C) 1985,86,87,88,89,93,94,95,97,98, 1999, 2000, 2001, 02, 03, 2004 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -67,7 +67,7 @@ struct buffer *all_buffers; | |||
| 67 | Setting the default value also goes through the alist of buffers | 67 | Setting the default value also goes through the alist of buffers |
| 68 | and stores into each buffer that does not say it has a local value. */ | 68 | and stores into each buffer that does not say it has a local value. */ |
| 69 | 69 | ||
| 70 | struct buffer buffer_defaults; | 70 | DECL_ALIGN (struct buffer, buffer_defaults); |
| 71 | 71 | ||
| 72 | /* A Lisp_Object pointer to the above, used for staticpro */ | 72 | /* A Lisp_Object pointer to the above, used for staticpro */ |
| 73 | 73 | ||
| @@ -97,7 +97,8 @@ struct buffer buffer_local_flags; | |||
| 97 | /* This structure holds the names of symbols whose values may be | 97 | /* This structure holds the names of symbols whose values may be |
| 98 | buffer-local. It is indexed and accessed in the same way as the above. */ | 98 | buffer-local. It is indexed and accessed in the same way as the above. */ |
| 99 | 99 | ||
| 100 | struct buffer buffer_local_symbols; | 100 | DECL_ALIGN (struct buffer, buffer_local_symbols); |
| 101 | |||
| 101 | /* A Lisp_Object pointer to the above, used for staticpro */ | 102 | /* A Lisp_Object pointer to the above, used for staticpro */ |
| 102 | static Lisp_Object Vbuffer_local_symbols; | 103 | static Lisp_Object Vbuffer_local_symbols; |
| 103 | 104 | ||