diff options
| author | Vinicius Jose Latorre | 2004-03-29 02:51:59 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2004-03-29 02:51:59 +0000 |
| commit | 034cb0963366f131566dd5dc9d8a2f7282dd59ae (patch) | |
| tree | b4fed9f464d6003053857eb741ceaedd1ffb5dd1 | |
| parent | b6ea9927a0db08d52e7bb3ad5241c488e8df2db9 (diff) | |
| download | emacs-034cb0963366f131566dd5dc9d8a2f7282dd59ae.tar.gz emacs-034cb0963366f131566dd5dc9d8a2f7282dd59ae.zip | |
New version 6.7.3.
| -rw-r--r-- | lisp/printing.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/printing.el b/lisp/printing.el index 3e1df1554aa..1a5a743d99a 100644 --- a/lisp/printing.el +++ b/lisp/printing.el | |||
| @@ -5,13 +5,13 @@ | |||
| 5 | 5 | ||
| 6 | ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br> | 6 | ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br> |
| 7 | ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br> | 7 | ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br> |
| 8 | ;; Time-stamp: <2004/03/28 19:19:17 vinicius> | 8 | ;; Time-stamp: <2004/03/28 23:37:38 vinicius> |
| 9 | ;; Keywords: wp, print, PostScript | 9 | ;; Keywords: wp, print, PostScript |
| 10 | ;; Version: 6.7.2 | 10 | ;; Version: 6.7.3 |
| 11 | ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ | 11 | ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ |
| 12 | 12 | ||
| 13 | (defconst pr-version "6.7.2" | 13 | (defconst pr-version "6.7.3" |
| 14 | "printing.el, v 6.7.2 <2004/02/29 vinicius> | 14 | "printing.el, v 6.7.3 <2004/03/28 vinicius> |
| 15 | 15 | ||
| 16 | Please send all bug fixes and enhancements to | 16 | Please send all bug fixes and enhancements to |
| 17 | Vinicius Jose Latorre <vinicius@cpqd.com.br> | 17 | Vinicius Jose Latorre <vinicius@cpqd.com.br> |
| @@ -4572,8 +4572,8 @@ See `pr-visible-entry-alist'.") | |||
| 4572 | (defun pr-menu-position (entry index horizontal) | 4572 | (defun pr-menu-position (entry index horizontal) |
| 4573 | (let ((pos (cdr (pr-e-mouse-pixel-position)))) | 4573 | (let ((pos (cdr (pr-e-mouse-pixel-position)))) |
| 4574 | (list | 4574 | (list |
| 4575 | (list (car pos) ; X | 4575 | (list (or (car pos) 0) ; X |
| 4576 | (- (cdr pos) ; Y | 4576 | (- (or (cdr pos) 0) ; Y |
| 4577 | (* (pr-menu-index entry index) pr-menu-char-height))) | 4577 | (* (pr-menu-index entry index) pr-menu-char-height))) |
| 4578 | (selected-frame)))) ; frame | 4578 | (selected-frame)))) ; frame |
| 4579 | ) | 4579 | ) |
| @@ -4582,9 +4582,9 @@ See `pr-visible-entry-alist'.") | |||
| 4582 | (defun pr-menu-position (entry index horizontal) | 4582 | (defun pr-menu-position (entry index horizontal) |
| 4583 | (let ((pos (cdr (pr-e-mouse-pixel-position)))) | 4583 | (let ((pos (cdr (pr-e-mouse-pixel-position)))) |
| 4584 | (list | 4584 | (list |
| 4585 | (list (- (car pos) ; X | 4585 | (list (- (or (car pos) 0) ; X |
| 4586 | (* horizontal pr-menu-char-width)) | 4586 | (* horizontal pr-menu-char-width)) |
| 4587 | (- (cdr pos) ; Y | 4587 | (- (or (cdr pos) 0) ; Y |
| 4588 | (* (pr-menu-index entry index) pr-menu-char-height))) | 4588 | (* (pr-menu-index entry index) pr-menu-char-height))) |
| 4589 | (selected-frame)))) ; frame | 4589 | (selected-frame)))) ; frame |
| 4590 | )) | 4590 | )) |