diff options
-rw-r--r-- | src/indent.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/indent.c b/src/indent.c index f76b65418ef..a810dd3189b 100644 --- a/src/indent.c +++ b/src/indent.c @@ -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)); } |