From f109dfa2789785a8b67583e9f112fec1e34fb030 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 15 Sep 1994 04:06:55 +0000 Subject: [PATCH] Include window.h. (Fnewline): Inhibit the insert-at-end-of-line hack when at the top of the window. --- src/cmds.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/cmds.c b/src/cmds.c index a3f23c7ac02..49998adbf50 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -23,6 +23,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "commands.h" #include "buffer.h" #include "syntax.h" +#include "window.h" Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; @@ -253,6 +254,11 @@ In Auto Fill mode, if no numeric arg, break the preceding line if it's long.") features all do nothing in that case. */ flag = point > BEGV && FETCH_CHAR (point - 1) == '\n'; + /* Don't do this if at the beginning of the window. */ + if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer + && marker_position (XWINDOW (selected_window)->start) == PT) + flag = 0; + #ifdef USE_TEXT_PROPERTIES /* We cannot use this optimization if properties change in the vicinity. -- 2.39.5