[26075] in Athena Bugs
linux 9.3.11: emacs
daemon@ATHENA.MIT.EDU (cda)
Thu Sep 16 16:20:35 2004
Message-Id: <200409162019.i8GKJbTl006496@cheshire-cat.mit.edu>
To: bugs@mit.edu
Date: Thu, 16 Sep 2004 16:19:37 -0400
From: cda <cda@mit.edu>
cc: cda@mit.edu
Errors-To: bugs-bounces@mit.edu
System name: cheshire-cat.mit.edu
Type and version: i686 9.3.11 (with mkserv)
Display type: nVidia Corporation NV5 [RIVA TNT2/TNT2 Pro] (rev 15)
Shell: /bin/athena/tcsh
Window manager: sawfish
What were you trying to do?
Resize an emacs window.
What's wrong:
Resizing it works fine; it's the size estimate that works incorrectly.
On my account, the first time i click and drag any border of the window,
the proper dimensions of the window are shown (80x37). If I do this a
second time, without moving my mouse away or doing anything else, the
dimensions shown are 85x37. (I've verified the actual size of the
window to be 80 columns.) This happens on both Sun and Linux.
With a test account (paco), I don't get the one-click grace period,
and am instead shown the incorrect dimensions every time (85x37).
I'll include my .emacs file for reference below.
Not an important bug by any means, but I figured I'd report it anyway...
Is it possible that sawfish is getting confused by the existence
of scrollbars on the right and left sides of the window?
What should have happened:
The correct dimensions should be shown.
Please describe any relevant documentation references:
;; colors
(add-hook 'find-file-hooks 'turn-on-font-lock)
;; mail citations
(autoload 'sc-cite-original "supercite" "Supercite 3.1" t)
(autoload 'sc-submit-bug-report "supercite" "Supercite 3.1" t)
(add-hook 'mail-citation-hook 'sc-cite-original)
(autoload 'gnus "gnus" "Read network news." t)
(autoload 'gnus-post-news "gnuspost" "Post a new news." t)
(setq gnus-nntp-server "schaos.dyn.ml.org"
load-path (append load-path
(list "/mit/sipb/lib/elisp")))
;; default to text mode
(setq default-major-mode 'text-mode)
;; kill gui stuff
(if (string-lessp emacs-version "21")
22
;;(tool-bar-mode -1)
(menu-bar-mode -1))
(when (= emacs-major-version 21)
(tool-bar-mode -1)
)
(setq inhibit-startup-message t)