aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjave2009-01-01 00:21:04 +0100
committerjave2009-01-01 00:21:04 +0100
commit35c2e62acf3ccc4741b4fc57fc96a2917e5f3cb1 (patch)
tree41f8c932a90bc92c96738a1ab15f9f4c6f518017
parent9b7d9c08c0ba278c2cafc9a14f9e872f7a80e002 (diff)
downloademacs-35c2e62acf3ccc4741b4fc57fc96a2917e5f3cb1.tar.gz
emacs-35c2e62acf3ccc4741b4fc57fc96a2917e5f3cb1.zip
a missing merge, trailing whitespace
-rw-r--r--src/dispnew.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index a44d2460dd0..9a8ab3ae2b4 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -17,6 +17,7 @@ GNU General Public License for more details.
17 17
18You should have received a copy of the GNU General Public License 18You should have received a copy of the GNU General Public License
19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
20#include <config.h> 21#include <config.h>
21 22
22#include "sysstdio.h" 23#include "sysstdio.h"
@@ -198,7 +199,8 @@ add_window_display_history (struct window *w, const char *msg, bool paused_p)
198 PAUSED_P means that the update has been interrupted for 199 PAUSED_P means that the update has been interrupted for
199 pending input. */ 200 pending input. */
200 201
201static void add_frame_display_history (struct frame *f, int paused_p) 202static void
203add_frame_display_history (struct frame *f, bool paused_p)
202{ 204{
203 char *buf; 205 char *buf;
204 void *ptr = f; 206 void *ptr = f;
@@ -4137,7 +4139,7 @@ scrolling_window (struct window *w, bool header_line_p)
4137 //printf("scrolling_window\n"); 4139 //printf("scrolling_window\n");
4138 return 0; 4140 return 0;
4139#endif 4141#endif
4140 4142
4141 /* Give up if some rows in the desired matrix are not enabled. */ 4143 /* Give up if some rows in the desired matrix are not enabled. */
4142 if (! MATRIX_ROW_ENABLED_P (desired_matrix, i)) 4144 if (! MATRIX_ROW_ENABLED_P (desired_matrix, i))
4143 return -1; 4145 return -1;