diff options
| author | Dan Nicolaescu | 2010-08-05 16:34:12 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-08-05 16:34:12 -0700 |
| commit | 04bab72cc68e3b7b1bca9b871314fb79badd7042 (patch) | |
| tree | 9d9fbcfdc8b4c26d2592afe37ccc9ba6672d8d21 /src/window.c | |
| parent | dff94ed500892b5b3fcd067a280c81ba04ddf5f1 (diff) | |
| download | emacs-04bab72cc68e3b7b1bca9b871314fb79badd7042.tar.gz emacs-04bab72cc68e3b7b1bca9b871314fb79badd7042.zip | |
Remove extern declarations in .c files, .h files have them.
* src/data.c:
* src/dired.c:
* src/editfns.c:
* src/filelock.c:
* src/fns.c:
* src/font.c:
* src/fontset.c:
* src/frame.c:
* src/fringe.c:
* src/ftfont.c:
* src/gtkutil.c:
* src/indent.c:
* src/keyboard.c:
* src/keymap.c:
* src/lread.c:
* src/menu.c:
* src/print.c:
* src/search.c:
* src/sound.c:
* src/window.c:
* src/xdisp.c:
* src/xfaces.c:
* src/xfns.c:
* src/xfont.c:
* src/xftfont.c:
* src/xmenu.c:
* src/xterm.c: Remove declarations.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/window.c b/src/window.c index 3c556fff69b..60da49175e3 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -57,8 +57,6 @@ Lisp_Object Qdisplay_buffer; | |||
| 57 | Lisp_Object Qscroll_up, Qscroll_down, Qscroll_command; | 57 | Lisp_Object Qscroll_up, Qscroll_down, Qscroll_command; |
| 58 | Lisp_Object Qwindow_size_fixed; | 58 | Lisp_Object Qwindow_size_fixed; |
| 59 | 59 | ||
| 60 | extern Lisp_Object Qleft_margin, Qright_margin; | ||
| 61 | |||
| 62 | static int displayed_window_lines (struct window *); | 60 | static int displayed_window_lines (struct window *); |
| 63 | static struct window *decode_window (Lisp_Object); | 61 | static struct window *decode_window (Lisp_Object); |
| 64 | static int count_windows (struct window *); | 62 | static int count_windows (struct window *); |
| @@ -191,16 +189,11 @@ static int window_scroll_preserve_vpos; | |||
| 191 | static int inhibit_frame_unsplittable; | 189 | static int inhibit_frame_unsplittable; |
| 192 | #endif /* 0 */ | 190 | #endif /* 0 */ |
| 193 | 191 | ||
| 194 | extern EMACS_INT scroll_margin; | ||
| 195 | |||
| 196 | extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; | ||
| 197 | |||
| 198 | /* If non-nil, then the `recenter' command with a nil argument | 192 | /* If non-nil, then the `recenter' command with a nil argument |
| 199 | the entire frame to be redrawn; the special value `tty' causes the | 193 | the entire frame to be redrawn; the special value `tty' causes the |
| 200 | frame to be redrawn only if it is a tty frame. */ | 194 | frame to be redrawn only if it is a tty frame. */ |
| 201 | 195 | ||
| 202 | static Lisp_Object Vrecenter_redisplay; | 196 | static Lisp_Object Vrecenter_redisplay; |
| 203 | extern Lisp_Object Qtty; | ||
| 204 | 197 | ||
| 205 | 198 | ||
| 206 | DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0, | 199 | DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0, |