aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.h
diff options
context:
space:
mode:
authorMartin Rudalics2011-06-07 11:26:21 +0200
committerMartin Rudalics2011-06-07 11:26:21 +0200
commitabde8f8c7b14b0a851dc0dec23e7444550a148cf (patch)
tree5c7a5ac601f71f165fc3361bda5583d28dbaf196 /src/window.h
parent81eafe297773904d0a532328d27d658dde29be99 (diff)
downloademacs-abde8f8c7b14b0a851dc0dec23e7444550a148cf.tar.gz
emacs-abde8f8c7b14b0a851dc0dec23e7444550a148cf.zip
Install some window-size related functions and window-list-1.
* window.c (Fwindow_total_size, Fwindow_left_column) (Fwindow_top_line, window_body_lines, Fwindow_body_size) (Fwindow_list_1): New functions. (window_box_text_cols): Replace with window_body_cols. (Fwindow_width, Fscroll_left, Fscroll_right): Use window_body_cols instead of window_box_text_cols. * window.h: Extern window_body_cols instead of window_box_text_cols. * indent.c (compute_motion, Fcompute_motion): Use window_body_cols instead of window_box_text_cols.
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h
index 96e30d98d24..7f937e92284 100644
--- a/src/window.h
+++ b/src/window.h
@@ -867,6 +867,6 @@ extern void init_window (void);
867extern void syms_of_window (void); 867extern void syms_of_window (void);
868extern void keys_of_window (void); 868extern void keys_of_window (void);
869 869
870extern int window_box_text_cols (struct window *w); 870extern int window_body_cols (struct window *w);
871 871
872#endif /* not WINDOW_H_INCLUDED */ 872#endif /* not WINDOW_H_INCLUDED */