# HG changeset patch # User Richard M. Stallman # Date 1114539892 0 # Node ID 2fe5da3b3da2de366eebff5b2b884733b7701ab8 # Parent 30109b37b466fb6490360af6e412892c5aeb4e81 (Fvertical_motion): Undo previous change. diff -r 30109b37b466 -r 2fe5da3b3da2 src/indent.c --- a/src/indent.c Tue Apr 26 14:17:51 2005 +0000 +++ b/src/indent.c Tue Apr 26 18:24:52 2005 +0000 @@ -65,8 +65,6 @@ int current_column_bol_cache; -extern Lisp_Object Qfontification_functions; - /* Get the display table to use for the current buffer. */ struct Lisp_Char_Table * @@ -2049,7 +2047,6 @@ struct window *w; Lisp_Object old_buffer; struct gcpro gcpro1; - int count = SPECPDL_INDEX (); CHECK_NUMBER (lines); if (! NILP (window)) @@ -2067,9 +2064,6 @@ XSETBUFFER (w->buffer, current_buffer); } - /* Don't fontify text that we just move across. */ - specbind (Qfontification_functions, Qnil); - if (noninteractive) { struct position pos; @@ -2115,7 +2109,6 @@ if (BUFFERP (old_buffer)) w->buffer = old_buffer; - unbind_to (count, Qnil); RETURN_UNGCPRO (make_number (it.vpos)); }