changeset 61863:2fe5da3b3da2

(Fvertical_motion): Undo previous change.
author Richard M. Stallman <rms@gnu.org>
date Tue, 26 Apr 2005 18:24:52 +0000
parents 30109b37b466
children af1b504ffc35
files src/indent.c
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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));
 }