aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-03-20 02:37:51 +0000
committerRichard M. Stallman <[email protected]>1994-03-20 02:37:51 +0000
commitd0da2301947bfd0523d905454c781529fc2321b5 (patch)
treea1f7bd52493eb0d7b5270f3f3ab0410a54cb4c00
parentbe8bd4a0032ef82761e5cabd3464571d70eae37a (diff)
(help-with-tutorial): Change previous change;
reduce threshold to 12 lines.
-rw-r--r--lisp/help.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 9592b0ab88..325ac7b478 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -96,7 +96,7 @@
(let ((n (- (window-height (selected-window))
(count-lines (point-min) (point))
6)))
- (if (< n 20)
+ (if (< n 12)
(newline n)
;; Some people get confused by the large gap.
(newline (/ n 2))