summaryrefslogtreecommitdiff
path: root/lisp/help.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-03-20 02:37:51 +0000
committerRichard M. Stallman <rms@gnu.org>1994-03-20 02:37:51 +0000
commitb8a67a23bdce28bb7f96880192685301dc377e94 (patch)
tree728b0559d82a6e754239a3958fb581a3719adf11 /lisp/help.el
parentd608d37c1807895cac146ab198a3132bad50188d (diff)
downloademacs-b8a67a23bdce28bb7f96880192685301dc377e94.tar.gz
(help-with-tutorial): Change previous change;
reduce threshold to 12 lines.
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 9592b0ab889..325ac7b4787 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))