diff options
| author | Dmitry Antipov | 2012-06-01 07:41:03 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-06-01 07:41:03 +0400 |
| commit | c98ff5dd439c0018b34a5e84f2a3ccc00ee444ef (patch) | |
| tree | a8f1d45b19ca87d91dddfd67f1d3e29958d1766b /src/ChangeLog | |
| parent | b691b884eeef2ecb8772ac121ab23136b9d9d0d2 (diff) | |
| download | emacs-c98ff5dd439c0018b34a5e84f2a3ccc00ee444ef.tar.gz emacs-c98ff5dd439c0018b34a5e84f2a3ccc00ee444ef.zip | |
For a 'struct window', replace some Lisp_Object fields to
bitfields where appropriate, remove unused fields.
* window.h (struct window): Remove unused 'last_mark_x' and
'last_mark_y' fields. Rename 'mini_p' field to 'mini',
change it's type from Lisp_Object to bitfield.
Change type of 'force_start', 'optional_new_start',
'last_had_star', 'update_mode_line' and 'start_at_line_beg'
fields from Lisp_Object to bitfield. Adjust users accordingly.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6d71346dd78..12845538a9e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | For a 'struct window', replace some Lisp_Object fields to | ||
| 4 | bitfields where appropriate, remove unused fields. | ||
| 5 | * window.h (struct window): Remove unused 'last_mark_x' and | ||
| 6 | 'last_mark_y' fields. Rename 'mini_p' field to 'mini', | ||
| 7 | change it's type from Lisp_Object to bitfield. | ||
| 8 | Change type of 'force_start', 'optional_new_start', | ||
| 9 | 'last_had_star', 'update_mode_line' and 'start_at_line_beg' | ||
| 10 | fields from Lisp_Object to bitfield. Adjust users accordingly. | ||
| 11 | |||
| 1 | 2012-05-31 Paul Eggert <eggert@cs.ucla.edu> | 12 | 2012-05-31 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 13 | ||
| 3 | Pacify gcc -Wdouble-precision when using Xaw. | 14 | Pacify gcc -Wdouble-precision when using Xaw. |