changeset 92095:736ad4adc7de

Fix previous change.
author Glenn Morris <rgm@gnu.org>
date Fri, 22 Feb 2008 08:31:15 +0000
parents 44d525cfbc21
children 6cc4c897d108
files admin/FOR-RELEASE
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/admin/FOR-RELEASE	Fri Feb 22 08:23:04 2008 +0000
+++ b/admin/FOR-RELEASE	Fri Feb 22 08:31:15 2008 +0000
@@ -64,12 +64,13 @@
 (modify-frame-parameters nil
                          '((user-position . t) (user-size . t) (left - -20)))
 
-This should move the L frame edge 20pix to the R of the L screen edge.
-It also moves the L frame edge 20pix to the R of the L screen edge.
+This should move the L frame edge 20pix to the L of the L screen edge.
+Instead, it moves the R frame edge 20pix to the L of the R screen edge.
 (modify-frame-parameters nil
-                         '((user-position . t) (user-size . t) (left + +20)))
+                         '((user-position . t) (user-size . t) (left + -20)))
 
-(It works in Emacs 21.)
+It works in Emacs 21. The "+ +" and "- +" forms are OK; ie it is when
+the number is -ve that things go wrong.
 
 
 ** Does deleting frames run Lisp code?  If so, can we get rid of that?