]> code.delx.au - gnu-emacs/commitdiff
(Fvertical_motion): Undo previous change.
authorRichard M. Stallman <rms@gnu.org>
Tue, 26 Apr 2005 18:24:52 +0000 (18:24 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 26 Apr 2005 18:24:52 +0000 (18:24 +0000)
src/indent.c

index f76b65418ef896a95b62fb800f0b96e935e04b7e..a810dd3189ba65e58e143539fea5c7d579a4d965 100644 (file)
@@ -65,8 +65,6 @@ static double position_indentation P_ ((int));
 
 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 @@ whether or not it is currently displayed in some window.  */)
   struct window *w;
   Lisp_Object old_buffer;
   struct gcpro gcpro1;
-  int count = SPECPDL_INDEX ();
 
   CHECK_NUMBER (lines);
   if (! NILP (window))
@@ -2067,9 +2064,6 @@ whether or not it is currently displayed in some window.  */)
       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 @@ whether or not it is currently displayed in some window.  */)
   if (BUFFERP (old_buffer))
     w->buffer = old_buffer;
 
-  unbind_to (count, Qnil);
   RETURN_UNGCPRO (make_number (it.vpos));
 }