diff options
| -rwxr-xr-x | autogen/configure | 5 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | etc/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/frame.h | 5 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
7 files changed, 16 insertions, 16 deletions
diff --git a/autogen/configure b/autogen/configure index 126248beced..23685c523ac 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -23965,8 +23965,9 @@ else | |||
| 23965 | #if \ | 23965 | #if \ |
| 23966 | (__GNUC__ || __IBMC__ || __IBMCPP__ \ | 23966 | (__GNUC__ || __IBMC__ || __IBMCPP__ \ |
| 23967 | || 0x5110 <= __SUNPRO_C || 1300 <= _MSC_VER) | 23967 | || 0x5110 <= __SUNPRO_C || 1300 <= _MSC_VER) |
| 23968 | int alignas (8) alignas_int = 1; | 23968 | struct alignas_test { char c; char alignas (8) alignas_8; }; |
| 23969 | char test_alignas[_Alignof (alignas_int) == 8 ? 1 : -1]; | 23969 | char test_alignas[offsetof (struct alignas_test, alignas_8) == 8 |
| 23970 | ? 1 : -1]; | ||
| 23970 | #endif | 23971 | #endif |
| 23971 | 23972 | ||
| 23972 | int | 23973 | int |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 801cf5aee4c..2b58a61570e 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz> | 1 | 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz> |
| 2 | 2 | ||
| 3 | * eshell.texi: Updated manual to reflect changes. | 3 | * eshell.texi (Built-ins): Update manual to mention tramp module. |
| 4 | 4 | ||
| 5 | 2013-03-18 Michael Albinus <michael.albinus@gmx.de> | 5 | 2013-03-18 Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
| @@ -2415,8 +2415,7 @@ | |||
| 2415 | 2415 | ||
| 2416 | 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz> | 2416 | 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz> |
| 2417 | 2417 | ||
| 2418 | * eshell.texi: Added documentation for Eshell insert | 2418 | * eshell.texi (Input/Output): Document insert output redirection operator, >>>. |
| 2419 | output redirection operator, >>>. | ||
| 2420 | 2419 | ||
| 2421 | 2011-02-18 Glenn Morris <rgm@gnu.org> | 2420 | 2011-02-18 Glenn Morris <rgm@gnu.org> |
| 2422 | 2421 | ||
diff --git a/etc/ChangeLog b/etc/ChangeLog index 92f31e6c6e8..5b55e35397b 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | 2013-03-29 Aidan Gauland <aidalgol@no8wireless.co.nz> | 5 | 2013-03-29 Aidan Gauland <aidalgol@no8wireless.co.nz> |
| 6 | 6 | ||
| 7 | * NEWS: Added entry for em-tramp change in 2013-03-26T22:08:58Z!aidalgol@no8wireless.co.nz | 7 | * NEWS (Eshell): New entry for em-tramp change in 2013-03-26T22:08:58Z!aidalgol@no8wireless.co.nz |
| 8 | 8 | ||
| 9 | 2013-03-21 Eric Ludlam <zappo@gnu.org> | 9 | 2013-03-21 Eric Ludlam <zappo@gnu.org> |
| 10 | 10 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d1b827966de..ced7672ef99 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -80,7 +80,7 @@ | |||
| 80 | 80 | ||
| 81 | 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz> | 81 | 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz> |
| 82 | 82 | ||
| 83 | * eshell/em-unix.el: Moved su and sudo to... | 83 | * eshell/em-unix.el: Move su and sudo to... |
| 84 | * eshell/em-tramp.el: ...Eshell tramp module | 84 | * eshell/em-tramp.el: ...Eshell tramp module |
| 85 | 85 | ||
| 86 | 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca> | 86 | 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca> |
| @@ -1083,8 +1083,8 @@ | |||
| 1083 | 1083 | ||
| 1084 | 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz> | 1084 | 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz> |
| 1085 | 1085 | ||
| 1086 | * eshell/em-cmpl.el: Corrected "context-related help" | 1086 | * eshell/em-cmpl.el: Correct "context-related help" keybinding in |
| 1087 | keybinding in commentary. | 1087 | commentary. |
| 1088 | 1088 | ||
| 1089 | 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de> | 1089 | 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de> |
| 1090 | 1090 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index b9e9cce5cb7..b2b4aa6895c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2013-03-31 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | * frame.h (struct frame): Drop scroll_bottom_vpos | ||
| 4 | member becaue all real users are dead long ago. | ||
| 5 | (FRAME_SCROLL_BOTTOM_VPOS): Remove. | ||
| 6 | * xdisp.c (redisplay_internal): Adjust user. | ||
| 7 | |||
| 1 | 2013-03-30 Darren Ho <darren.hoo@gmail.com> (tiny change) | 8 | 2013-03-30 Darren Ho <darren.hoo@gmail.com> (tiny change) |
| 2 | 9 | ||
| 3 | * nsmenu.m (showAtX:Y:for:): setLevel to | 10 | * nsmenu.m (showAtX:Y:for:): setLevel to |
diff --git a/src/frame.h b/src/frame.h index 32a6954024e..46e18dd8ddb 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -427,10 +427,6 @@ struct frame | |||
| 427 | /* Width of bar cursor (if we are using that) for blink-off state. */ | 427 | /* Width of bar cursor (if we are using that) for blink-off state. */ |
| 428 | int blink_off_cursor_width; | 428 | int blink_off_cursor_width; |
| 429 | 429 | ||
| 430 | /* Nonnegative if current redisplay should not do scroll computation | ||
| 431 | for lines beyond a certain vpos. This is the vpos. */ | ||
| 432 | int scroll_bottom_vpos; | ||
| 433 | |||
| 434 | /* Configured width of the scroll bar, in pixels and in characters. | 430 | /* Configured width of the scroll bar, in pixels and in characters. |
| 435 | config_scroll_bar_cols tracks config_scroll_bar_width if the | 431 | config_scroll_bar_cols tracks config_scroll_bar_width if the |
| 436 | latter is positive; a zero value in config_scroll_bar_width means | 432 | latter is positive; a zero value in config_scroll_bar_width means |
| @@ -785,7 +781,6 @@ typedef struct frame *FRAME_PTR; | |||
| 785 | #define FRAME_DELETE_COST(f) (f)->delete_line_cost | 781 | #define FRAME_DELETE_COST(f) (f)->delete_line_cost |
| 786 | #define FRAME_INSERTN_COST(f) (f)->insert_n_lines_cost | 782 | #define FRAME_INSERTN_COST(f) (f)->insert_n_lines_cost |
| 787 | #define FRAME_DELETEN_COST(f) (f)->delete_n_lines_cost | 783 | #define FRAME_DELETEN_COST(f) (f)->delete_n_lines_cost |
| 788 | #define FRAME_SCROLL_BOTTOM_VPOS(f) (f)->scroll_bottom_vpos | ||
| 789 | #define FRAME_FOCUS_FRAME(f) f->focus_frame | 784 | #define FRAME_FOCUS_FRAME(f) f->focus_frame |
| 790 | 785 | ||
| 791 | /* This frame slot says whether scroll bars are currently enabled for frame F, | 786 | /* This frame slot says whether scroll bars are currently enabled for frame F, |
diff --git a/src/xdisp.c b/src/xdisp.c index 32c8224cf04..a7be5fc275c 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -12948,8 +12948,6 @@ redisplay_internal (void) | |||
| 12948 | 12948 | ||
| 12949 | unbind_to (count1, Qnil); | 12949 | unbind_to (count1, Qnil); |
| 12950 | 12950 | ||
| 12951 | FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1; | ||
| 12952 | |||
| 12953 | consider_all_windows_p = (update_mode_lines | 12951 | consider_all_windows_p = (update_mode_lines |
| 12954 | || buffer_shared_and_changed () | 12952 | || buffer_shared_and_changed () |
| 12955 | || cursor_type_changed); | 12953 | || cursor_type_changed); |