all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* ps-print-buffer ps-right-header
@ 2003-05-06 20:51 Greg Hill
  0 siblings, 0 replies; only message in thread
From: Greg Hill @ 2003-05-06 20:51 UTC (permalink / raw)


platform:  GNU Emacs 21.2.2 (sparc-sun-solaris2.7, X toolkit)

It appears as if a symbol-function provided as part of 
ps-right-header gets called twice before the first page is printed. 
I would expect the code below to print "1/2" at the top of the first 
page, and "2/2" at the top of the second page.  Instead it prints out 
"2/2" and "3/2".

In my *Messages* buffer I get:

Formatting...  0%
printPageNo called with PageNumber = 0
printPageNo called with PageNumber = 1
Formatting... 50%
printPageNo called with PageNumber = 2

Of course you will probably have to change the values of 
ps-lpr-command and ps-lpr-switches to run this on your platform.

(defun printPageNo ()
   (message "printPageNo called with PageNumber = %d" PageNumber)
   (format "%d/%d" (setq PageNumber (1+ PageNumber)) NumPages))

(defun print-something ()
   (let ((ps-left-header (list "(UpperHeader)" "(LowerHeader)"))
	(ps-right-header (list 'printPageNo
			       'ps-time-stamp-locale-default ))
	(ps-lpr-command  "lp")
	(ps-lpr-switches (list "-dpclsw"))
	(PageNumber 0)
	(NumPages 2) )
     (set-buffer (setq print-buffer (get-buffer-create "printTest")))
     (erase-buffer)
     (insert "First page\fSecond page")
     (ps-print-buffer) ))

--Greg

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-05-06 20:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-06 20:51 ps-print-buffer ps-right-header Greg Hill

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.