summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2013-01-11 22:15:12 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2013-01-11 22:15:12 -0800
commitbdc9b756cdbfd3dc2b8b2175816d4a81c7021a8d (patch)
treea338d7dbdbd5082e068906080c4d6e05653081a1 /src/indent.c
parent444b01bb49d94293d6514271b639ffa4928de640 (diff)
downloademacs-bdc9b756cdbfd3dc2b8b2175816d4a81c7021a8d.tar.gz
* indent.c (Fvertical_motion): Remove now-incorrect GCPROs
for old_charpos and old_bytepos.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c
index 4a30c00dd27..45b6afbd395 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -1970,7 +1970,7 @@ whether or not it is currently displayed in some window. */)
struct window *w;
Lisp_Object old_buffer;
EMACS_INT old_charpos IF_LINT (= 0), old_bytepos IF_LINT (= 0);
- struct gcpro gcpro1, gcpro2, gcpro3;
+ struct gcpro gcpro1;
Lisp_Object lcols = Qnil;
double cols IF_LINT (= 0);
void *itdata = NULL;
@@ -1987,7 +1987,7 @@ whether or not it is currently displayed in some window. */)
w = decode_live_window (window);
old_buffer = Qnil;
- GCPRO3 (old_buffer, old_charpos, old_bytepos);
+ GCPRO1 (old_buffer);
if (XBUFFER (w->buffer) != current_buffer)
{
/* Set the window's buffer temporarily to the current buffer. */