# HG changeset patch # User Glenn Morris # Date 1201925783 0 # Node ID 85b224f48b52afbe9d391d46028678068954b5d5 # Parent dca6485ff3740626c3c0a9323efc6908434315ff (declare-function): Add compatibility definition. (ps-plot-with-face, ps-plot-string): Declare as functions. (ps-bold-faces, ps-italic-faces): Declare variables. diff -r dca6485ff374 -r 85b224f48b52 lisp/ps-def.el --- a/lisp/ps-def.el Sat Feb 02 04:15:23 2008 +0000 +++ b/lisp/ps-def.el Sat Feb 02 04:16:23 2008 +0000 @@ -31,6 +31,15 @@ ;;; Code: +(eval-and-compile + (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) + +(declare-function ps-plot-with-face "ps-print" (from to face)) +(declare-function ps-plot-string "ps-print" (string)) + +(defvar ps-bold-faces) ; in ps-print.el +(defvar ps-italic-faces) + ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;