diff options
| author | Paul Eggert | 2011-04-13 17:42:10 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-13 17:42:10 -0700 |
| commit | 9306c32edb973b6c85ab32437332c18288528830 (patch) | |
| tree | ffe94321df7e7f7f16038b648ed7270c410f33ed /src | |
| parent | cd44d2ebb43eb738eca182841c903f8419cd6b5b (diff) | |
| download | emacs-9306c32edb973b6c85ab32437332c18288528830.tar.gz emacs-9306c32edb973b6c85ab32437332c18288528830.zip | |
* indent.c (val_compute_motion, val_vmotion): Now static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/indent.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1ede517243f..c11fd18714e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-04-13 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-04-13 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * indent.c (val_compute_motion, val_vmotion): Now static. | ||
| 4 | |||
| 3 | * image.c: Make symbols static if they're not exported. | 5 | * image.c: Make symbols static if they're not exported. |
| 4 | * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare | 6 | * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare |
| 5 | if USE_GTK. | 7 | if USE_GTK. |
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. */) | |||
| 1044 | 1044 | ||
| 1045 | /* compute_motion: compute buffer posn given screen posn and vice versa */ | 1045 | /* compute_motion: compute buffer posn given screen posn and vice versa */ |
| 1046 | 1046 | ||
| 1047 | struct position val_compute_motion; | 1047 | static struct position val_compute_motion; |
| 1048 | 1048 | ||
| 1049 | /* Scan the current buffer forward from offset FROM, pretending that | 1049 | /* Scan the current buffer forward from offset FROM, pretending that |
| 1050 | this is at line FROMVPOS, column FROMHPOS, until reaching buffer | 1050 | 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. */) | |||
| 1818 | 1818 | ||
| 1819 | /* Fvertical_motion and vmotion */ | 1819 | /* Fvertical_motion and vmotion */ |
| 1820 | 1820 | ||
| 1821 | struct position val_vmotion; | 1821 | static struct position val_vmotion; |
| 1822 | 1822 | ||
| 1823 | struct position * | 1823 | struct position * |
| 1824 | vmotion (register EMACS_INT from, register EMACS_INT vtarget, struct window *w) | 1824 | vmotion (register EMACS_INT from, register EMACS_INT vtarget, struct window *w) |