diff options
| author | Romain Francoise | 2005-11-30 19:40:13 +0000 |
|---|---|---|
| committer | Romain Francoise | 2005-11-30 19:40:13 +0000 |
| commit | 8a2c27b96c3650af79b2cf436eca75da849f2549 (patch) | |
| tree | 917cbe3ecaab4e9139521aba2c1f789cddd0459d | |
| parent | 7854b2a3f2dabe13e958f4e0ed72272fbfc70180 (diff) | |
| download | emacs-8a2c27b96c3650af79b2cf436eca75da849f2549.tar.gz emacs-8a2c27b96c3650af79b2cf436eca75da849f2549.zip | |
(dframe-reposition-frame-emacs): Fix position computation for 'left
location.
Update copyright year.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/dframe.el | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7e0aa3b99fa..7950d5e4dbc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-11-30 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * dframe.el (dframe-reposition-frame-emacs): Fix position | ||
| 4 | computation for 'left location. | ||
| 5 | Update copyright year. | ||
| 6 | |||
| 1 | 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 8 | ||
| 3 | * help.el (help-map): Move initialization into declaration. | 9 | * help.el (help-map): Move initialization into declaration. |
diff --git a/lisp/dframe.el b/lisp/dframe.el index 4be0ee8f097..56bbdc36c01 100644 --- a/lisp/dframe.el +++ b/lisp/dframe.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dframe --- dedicate frame support modes | 1 | ;;; dframe --- dedicate frame support modes |
| 2 | 2 | ||
| 3 | ;;; Copyright (C) 1996, 97, 98, 99, 2000, 01, 02, 03, 04 Free Software Foundation | 3 | ;;; Copyright (C) 1996, 97, 98, 99, 2000, 01, 02, 03, 04, 05 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | ;; Keywords: file, tags, tools | 6 | ;; Keywords: file, tags, tools |
| @@ -509,7 +509,7 @@ a cons cell indicationg a position of the form (LEFT . TOP)." | |||
| 509 | (setq newleft (+ pfx pfw 5) | 509 | (setq newleft (+ pfx pfw 5) |
| 510 | newtop pfy)) | 510 | newtop pfy)) |
| 511 | ((eq location 'left) | 511 | ((eq location 'left) |
| 512 | (setq newleft (+ pfx 10 nfw) | 512 | (setq newleft (- pfx 10 nfw) |
| 513 | newtop pfy)) | 513 | newtop pfy)) |
| 514 | ((eq location 'left-right) | 514 | ((eq location 'left-right) |
| 515 | (setq newleft | 515 | (setq newleft |