aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorDan Nicolaescu2010-08-05 16:34:12 -0700
committerDan Nicolaescu2010-08-05 16:34:12 -0700
commit04bab72cc68e3b7b1bca9b871314fb79badd7042 (patch)
tree9d9fbcfdc8b4c26d2592afe37ccc9ba6672d8d21 /src/window.c
parentdff94ed500892b5b3fcd067a280c81ba04ddf5f1 (diff)
downloademacs-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.c7
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;
57Lisp_Object Qscroll_up, Qscroll_down, Qscroll_command; 57Lisp_Object Qscroll_up, Qscroll_down, Qscroll_command;
58Lisp_Object Qwindow_size_fixed; 58Lisp_Object Qwindow_size_fixed;
59 59
60extern Lisp_Object Qleft_margin, Qright_margin;
61
62static int displayed_window_lines (struct window *); 60static int displayed_window_lines (struct window *);
63static struct window *decode_window (Lisp_Object); 61static struct window *decode_window (Lisp_Object);
64static int count_windows (struct window *); 62static int count_windows (struct window *);
@@ -191,16 +189,11 @@ static int window_scroll_preserve_vpos;
191static int inhibit_frame_unsplittable; 189static int inhibit_frame_unsplittable;
192#endif /* 0 */ 190#endif /* 0 */
193 191
194extern EMACS_INT scroll_margin;
195
196extern 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
202static Lisp_Object Vrecenter_redisplay; 196static Lisp_Object Vrecenter_redisplay;
203extern Lisp_Object Qtty;
204 197
205 198
206DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0, 199DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,