* Re: [Emacs-diffs] Changes to emacs/src/ChangeLog,v
[not found] <E1KCkFQ-00039Q-OF@cvs.savannah.gnu.org>
@ 2008-06-29 1:17 ` Juanma Barranquero
0 siblings, 0 replies; only message in thread
From: Juanma Barranquero @ 2008-06-29 1:17 UTC (permalink / raw)
To: Jason Rumney; +Cc: emacs-devel Mailinglist
On Sun, Jun 29, 2008 at 01:54, Jason Rumney <jasonr@gnu.org> wrote:
> + * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
> + (w32_frame_parm_handlers): Set alpha handler.
x_set_frame_parameters sets parameters (with store_frame_param) before
calling the frame_parm_handlers, which can fail:
ELISP> (progn
(ignore-errors (set-frame-parameter nil 'alpha 2.0))
(frame-parameter nil 'alpha))
2.0
ELISP>
This causes weird effects; try evaluating this:
(progn
(ignore-errors (set-frame-parameter nil 'alpha 2.0))
(setq alpha (frame-parameter nil 'alpha))
(set-frame-parameter nil 'alpha 1.0))
Juanma
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-06-29 1:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <E1KCkFQ-00039Q-OF@cvs.savannah.gnu.org>
2008-06-29 1:17 ` [Emacs-diffs] Changes to emacs/src/ChangeLog,v Juanma Barranquero
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.