# HG changeset patch # User Gerd Moellmann # Date 955798683 0 # Node ID 419ab8689a3ff238d9f0ad5a5556ab5f9c3120aa # Parent f3497be4e8651f727edadee3f961a10083064278 Check for line-beginning-position definition. Fix counting lines in a region. (ps-print-version): New version number (5.1.5). (ps-spool-without-faces, ps-spool-with-faces): Adjust code. (ps-printing-region): Fun code fix. diff -r f3497be4e865 -r 419ab8689a3f lisp/ps-print.el --- a/lisp/ps-print.el Sat Apr 15 11:33:45 2000 +0000 +++ b/lisp/ps-print.el Sat Apr 15 11:38:03 2000 +0000 @@ -9,11 +9,11 @@ ;; Maintainer: Kenichi Handa (multi-byte characters) ;; Maintainer: Vinicius Jose Latorre ;; Keywords: wp, print, PostScript -;; Time-stamp: <2000/04/09 14:06:12 vinicius> -;; Version: 5.1.4 - -(defconst ps-print-version "5.1.4" - "ps-print.el, v 5.1.4 <2000/04/09 vinicius> +;; Time-stamp: <2000/04/14 11:07:23 vinicius> +;; Version: 5.1.5 + +(defconst ps-print-version "5.1.5" + "ps-print.el, v 5.1.5 <2000/04/14 vinicius> Vinicius's last change version -- this file may have been edited as part of Emacs without changes to the version number. When reporting bugs, @@ -1146,6 +1146,14 @@ (char-charset (char-after arg)))) +(or (fboundp 'line-beginning-position) + (defun line-beginning-position (&optional n) + (save-excursion + (and n (/= n 1) (forward-line (1- n))) + (beginning-of-line) + (point)))) + + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; User Variables: @@ -2690,7 +2698,7 @@ (defun ps-spool-without-faces (from to &optional region-p) (run-hooks 'ps-print-hook) - (ps-printing-region region-p) + (ps-printing-region region-p from) (ps-generate (current-buffer) from to 'ps-generate-postscript)) @@ -2701,7 +2709,7 @@ (defun ps-spool-with-faces (from to &optional region-p) (run-hooks 'ps-print-hook) - (ps-printing-region region-p) + (ps-printing-region region-p from) (ps-generate (current-buffer) from to 'ps-generate-postscript-with-faces)) @@ -2725,11 +2733,11 @@ "Non-nil means ps-print is printing a region.") -(defun ps-printing-region (region-p) +(defun ps-printing-region (region-p from) (setq ps-printing-region-p region-p ps-printing-region (cons (if region-p - (ps-count-lines (point-min) (region-beginning)) + (ps-count-lines (point-min) from) 1) (ps-count-lines (point-min) (point-max)))))