summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-04-26 18:24:52 +0000
committerRichard M. Stallman <rms@gnu.org>2005-04-26 18:24:52 +0000
commit5931327a48096d851a8db04d618e0c3ae2f8c24e (patch)
treeaffc47e6ff8370297d3a9ff4da72e9c4c17c46ce /src/indent.c
parentc25eec81aae90f8f592d754d29ba865bb8e98f73 (diff)
downloademacs-5931327a48096d851a8db04d618e0c3ae2f8c24e.tar.gz
(Fvertical_motion): Undo previous change.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c7
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));
}