Mercurial > emacs
comparison admin/FOR-RELEASE @ 92095:736ad4adc7de
Fix previous change.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 22 Feb 2008 08:31:15 +0000 |
parents | 44d525cfbc21 |
children | beff96972e2c |
comparison
equal
deleted
inserted
replaced
92094:44d525cfbc21 | 92095:736ad4adc7de |
---|---|
62 This should move the R frame edge 20pix to the R of the R screen edge. | 62 This should move the R frame edge 20pix to the R of the R screen edge. |
63 Instead, it moves the L frame edge 20pix to the R of the L screen edge. | 63 Instead, it moves the L frame edge 20pix to the R of the L screen edge. |
64 (modify-frame-parameters nil | 64 (modify-frame-parameters nil |
65 '((user-position . t) (user-size . t) (left - -20))) | 65 '((user-position . t) (user-size . t) (left - -20))) |
66 | 66 |
67 This should move the L frame edge 20pix to the R of the L screen edge. | 67 This should move the L frame edge 20pix to the L of the L screen edge. |
68 It also moves the L frame edge 20pix to the R of the L screen edge. | 68 Instead, it moves the R frame edge 20pix to the L of the R screen edge. |
69 (modify-frame-parameters nil | 69 (modify-frame-parameters nil |
70 '((user-position . t) (user-size . t) (left + +20))) | 70 '((user-position . t) (user-size . t) (left + -20))) |
71 | 71 |
72 (It works in Emacs 21.) | 72 It works in Emacs 21. The "+ +" and "- +" forms are OK; ie it is when |
73 the number is -ve that things go wrong. | |
73 | 74 |
74 | 75 |
75 ** Does deleting frames run Lisp code? If so, can we get rid of that? | 76 ** Does deleting frames run Lisp code? If so, can we get rid of that? |
76 It is a dangerous design. | 77 It is a dangerous design. |
77 http://lists.gnu.org/archive/html/emacs-devel/2007-09/msg01330.html | 78 http://lists.gnu.org/archive/html/emacs-devel/2007-09/msg01330.html |