comparison src/window.c @ 109637:c4c8e4a16194

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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 05 Aug 2010 16:34:12 -0700
parents 06384b3caebf
children 9cfca8c9fb07
comparison
equal deleted inserted replaced
109636:2d3e59e887ac 109637:c4c8e4a16194
54 54
55 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p; 55 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p;
56 Lisp_Object Qdisplay_buffer; 56 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
60 extern Lisp_Object Qleft_margin, Qright_margin;
61 59
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 *);
65 static int get_leaf_windows (struct window *, struct window **, int); 63 static int get_leaf_windows (struct window *, struct window **, int);
189 #if 0 /* This isn't used anywhere. */ 187 #if 0 /* This isn't used anywhere. */
190 /* Nonzero means we can split a frame even if it is "unsplittable". */ 188 /* Nonzero means we can split a frame even if it is "unsplittable". */
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,
207 doc: /* Return t if OBJECT is a window. */) 200 doc: /* Return t if OBJECT is a window. */)
208 (Lisp_Object object) 201 (Lisp_Object object)