GNU bug report logs -
#3304
view-lossage assumes always can see to bottom
Previous Next
Reported by: jidanni <at> jidanni.org
Date: Sat, 16 May 2009 04:25:04 UTC
Severity: wishlist
Fixed in version 23.1
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 3304 in the body.
You can then email your comments to 3304 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#3304
; Package
emacs
.
(Sat, 16 May 2009 04:25:05 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
jidanni <at> jidanni.org
:
New bug report received and forwarded. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
(Sat, 16 May 2009 04:25:05 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
view-lossage assumes one has a terminal large enough to always see to
the bottom of the *Help* buffer it creates.
No, terminals aren't getting smaller since the last time I brought this
up. The problem is that we are not just dealing with a b c d e, but
longer names that fill up the *Help* buffer so one can't just see what
one has just typed right away. One must scroll that buffer as an extra step.
My terminal has exactly 20 lines available for the *Help* buffer when I
hit C-h l.
(defun view-lossage ()
Needs to have a variable instead of the hardwired
"Display last 100 input keystrokes.
But much more importantly needs to
(goto-char (point-max))
somewhere inside it, as what we last typed is ALWAYS what we are
interested in, not [aforementioned new variable] strokes ago, which no
longer fits on the screen anyway.
I tried to put (goto-char (point-max)) into view-lossage but failed the
lisp miserably, else I would send you a patch.
Anyway, just do will you please, while you are reading this message.
The window splits in half but the *Help* buffer's bottom is too big at
least here for me, and I must scroll it to see the vital last few lines.
Wait! I have now a totally new solution that puts it all on the screen!
Two wrongs (hardwiring variables) don't make a right, and will ensure
I'll be writing you back the next time it outgrows its pants, but here
it is anyway. emacs-version "22.3.1":
$ cd /tmp;diff -u Orig.help.el help.el
--- Orig.help.el 2009-05-16 04:57:07.811578491 +0800
+++ help.el 2009-05-16 04:55:50.000000000 +0800
@@ -453,7 +453,7 @@
" "))
(with-current-buffer standard-output
(goto-char (point-min))
- (while (progn (move-to-column 50) (not (eobp)))
+ (while (progn (move-to-column 70) (not (eobp)))
(when (search-forward " " nil t)
(delete-char -1))
(insert "\n")))
Severity set to 'minor' from 'normal'
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Tue, 26 Jan 2010 18:42:01 GMT)
Full text and
rfc822 format available.
Forcibly Merged 215 3304.
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Sat, 09 Jul 2011 22:46:02 GMT)
Full text and
rfc822 format available.
bug No longer marked as fixed in versions 23.1 and reopened.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 22 Feb 2012 16:41:02 GMT)
Full text and
rfc822 format available.
Changed bug title to 'customizable number of characters in view-lossage' from 'view-lossage assumes always can see to bottom'
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Wed, 22 Feb 2012 17:17:01 GMT)
Full text and
rfc822 format available.
Added tag(s) wontfix.
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Wed, 22 Feb 2012 17:17:01 GMT)
Full text and
rfc822 format available.
Disconnected #3304 from all other report(s).
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Wed, 22 Feb 2012 17:18:02 GMT)
Full text and
rfc822 format available.
bug marked as fixed in version 23.1, send any further explanations to
3304 <at> debbugs.gnu.org and jidanni <at> jidanni.org
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Wed, 22 Feb 2012 17:18:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 22 Mar 2012 11:24:03 GMT)
Full text and
rfc822 format available.
This bug report was last modified 13 years and 150 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.