diff options
| author | Miles Bader | 2006-09-05 02:54:22 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-09-05 02:54:22 +0000 |
| commit | af6ea8ad8d62810d901561ae4a56d89f22ebacf0 (patch) | |
| tree | 02ee24f2f69b71a0690c99a5b007becf76077f74 /src/window.c | |
| parent | 76e590a3f4d983dbbbf9e1a1bbd7753e251c64a6 (diff) | |
| parent | 750a6cf4b21da81c1b451b8f4dc898127954c133 (diff) | |
| download | emacs-af6ea8ad8d62810d901561ae4a56d89f22ebacf0.tar.gz emacs-af6ea8ad8d62810d901561ae4a56d89f22ebacf0.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 414-422)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 128-130)
- Update from CVS
- Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-108
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c index f6253ec634f..7f3e71ec145 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -7290,16 +7290,18 @@ See also `same-window-buffer-names'. */); | |||
| 7290 | next_screen_context_lines = 2; | 7290 | next_screen_context_lines = 2; |
| 7291 | 7291 | ||
| 7292 | DEFVAR_INT ("split-height-threshold", &split_height_threshold, | 7292 | DEFVAR_INT ("split-height-threshold", &split_height_threshold, |
| 7293 | doc: /* *A window must be at least this tall to be eligible for splitting by `display-buffer'. | 7293 | doc: /* *A window must be at least this tall to be eligible for splitting |
| 7294 | by `display-buffer'. The value is in line units. | ||
| 7294 | If there is only one window, it is split regardless of this value. */); | 7295 | If there is only one window, it is split regardless of this value. */); |
| 7295 | split_height_threshold = 500; | 7296 | split_height_threshold = 500; |
| 7296 | 7297 | ||
| 7297 | DEFVAR_INT ("window-min-height", &window_min_height, | 7298 | DEFVAR_INT ("window-min-height", &window_min_height, |
| 7298 | doc: /* *Delete any window less than this tall (including its mode line). */); | 7299 | doc: /* *Delete any window less than this tall (including its mode line). |
| 7300 | The value is in line units. */); | ||
| 7299 | window_min_height = 4; | 7301 | window_min_height = 4; |
| 7300 | 7302 | ||
| 7301 | DEFVAR_INT ("window-min-width", &window_min_width, | 7303 | DEFVAR_INT ("window-min-width", &window_min_width, |
| 7302 | doc: /* *Delete any window less than this wide. */); | 7304 | doc: /* *Delete any window less than this wide (measured in characters). */); |
| 7303 | window_min_width = 10; | 7305 | window_min_width = 10; |
| 7304 | 7306 | ||
| 7305 | DEFVAR_LISP ("scroll-preserve-screen-position", | 7307 | DEFVAR_LISP ("scroll-preserve-screen-position", |