bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

ignoring resizing of window


From: Ulrich Neumerkel
Subject: ignoring resizing of window
Date: Mon, 29 Oct 2001 05:40:47 +0100 (MET)

--text follows this line--
This bug report will be sent to the Free Software Foundation,
not to your local site managers!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

Your bug report will be posted to the bug-gnu-emacs@gnu.org mailing list,
and to the gnu.emacs.bug news group.

In GNU Emacs 21.1.1 (i686-pc-linux-gnu, X toolkit)
 of 2001-10-23 on a8.complang.tuwien.ac.at
configured using `configure  --without-toolkit-scroll-bars --prefix /tmp'
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: en_US
  locale-coding-system: iso-latin-1
  default-enable-multibyte-characters: t

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

  locale-coding-system: iso-latin-1
  default-enable-multibyte-characters: t

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

I try to switch off the tool bar mode and resize the frame according
to its original geometry with 

emacs -no-init-file -l nomenu.elc

after loading the following is unexpected:
a) the frame is smaller by the difference of the toolbar.  During
loading it had the correct size.  Only when M-x ing reapply-geometry
the size is set to what has been indicated previously.
reapply-geometry is called several times in nomenu.elc

b) The x-pointer-shape remains an x-pointer-watch.  Only when typing
something the watch vanishes.


;; nomenu.el
(defun reapply-geometry ()
  (interactive)
  (let* ((resource (x-get-resource "geometry" "Geometry"))
         (ps (cond (resource (x-parse-geometry resource)))))
    (cond (ps
           (modify-frame-parameters
            (selected-frame)
            `(
              (user-position . t)
              (user-size . t) . ,ps)))))
  t)

(reapply-geometry)
(y-or-n-p "before switching off menu bars")
(tool-bar-mode -1)

(y-or-n-p "before reapply-geometry")

(reapply-geometry)

(y-or-n-p "after reapply-geometry")
(message "now, try M-x reapply-geometry to see the difference")
;; end of nomenu.el



Recent input:
SPC SPC SPC M-x r e a <tab> p <tab> <return> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <menu-bar> <help-menu> <report-emacs-b
ug>

Recent messages:
(/tmp/bin/emacs -no-init-file -l nomenu.elc)
Loading disp-table...done
Loading tool-bar...done
Loading image...done
Loading tooltip...done
For information about the GNU Project and its goals, type C-h C-p.
now, try M-x reapply-geometry to see the difference
Making completion list...
Loading view...done
Loading emacsbug...done



reply via email to

[Prev in Thread] Current Thread [Next in Thread]