diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-13 17:42:10 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-13 17:42:10 -0700 |
commit | 9306c32edb973b6c85ab32437332c18288528830 (patch) | |
tree | ffe94321df7e7f7f16038b648ed7270c410f33ed /src/indent.c | |
parent | cd44d2ebb43eb738eca182841c903f8419cd6b5b (diff) | |
download | emacs-9306c32edb973b6c85ab32437332c18288528830.tar.gz |
* indent.c (val_compute_motion, val_vmotion): Now static.
Diffstat (limited to 'src/indent.c')
-rw-r--r-- | src/indent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c index 84476e7bbdb..5eab4f48f69 100644 --- a/src/indent.c +++ b/src/indent.c @@ -1044,7 +1044,7 @@ The return value is the current column. */) /* compute_motion: compute buffer posn given screen posn and vice versa */ -struct position val_compute_motion; +static struct position val_compute_motion; /* Scan the current buffer forward from offset FROM, pretending that this is at line FROMVPOS, column FROMHPOS, until reaching buffer @@ -1818,7 +1818,7 @@ visible section of the buffer, and pass LINE and COL as TOPOS. */) /* Fvertical_motion and vmotion */ -struct position val_vmotion; +static struct position val_vmotion; struct position * vmotion (register EMACS_INT from, register EMACS_INT vtarget, struct window *w) |