]> git.eshelyaron.com Git - emacs.git/commitdiff
(ps-jitify, ps-lazify): Remove aliases only used to
authorGlenn Morris <rgm@gnu.org>
Tue, 21 Jul 2009 04:49:48 +0000 (04:49 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 21 Jul 2009 04:49:48 +0000 (04:49 +0000)
silence compiler.  Instead...
(jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
(ps-print-ensure-fontified): Update for above function name changes.

lisp/ChangeLog
lisp/ps-print.el

index b8e2192d0e0188d9944d5cedfb4b103a55d64607..1bb54430ead21e1cc9f7a83696ae322aaaaf902a 100644 (file)
@@ -1,5 +1,10 @@
 2009-07-21  Glenn Morris  <rgm@gnu.org>
 
+       * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
+       silence compiler.  Instead...
+       (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
+       (ps-print-ensure-fontified): Update for above function name changes.
+
        * printing.el (pr-mh-get-msg-num, pr-mh-show)
        (pr-mh-start-of-uncleaned-message): Remove aliases only used to
        silence compiler.  Instead...
index 01d969d67817d660c51c0abea296a60e81c67887..16be4439a5985b575735edd95856cca43882cdab 100644 (file)
@@ -6410,17 +6410,15 @@ If FACE is not a valid face name, use default face."
                (ps-face-background-name face))))
 
 
-;; to avoid compilation gripes
-(defalias 'ps-jitify 'jit-lock-fontify-now)
-(defalias 'ps-lazify 'lazy-lock-fontify-region)
-
+(declare-function jit-lock-fontify-now "jit-lock" (&optional start end))
+(declare-function lazy-lock-fontify-region "lazy-lock" (beg end))
 
 ;; to avoid compilation gripes
 (defun ps-print-ensure-fontified (start end)
   (cond ((and (boundp 'jit-lock-mode) (symbol-value 'jit-lock-mode))
-        (ps-jitify start end))
+        (jit-lock-fontify-now start end))
        ((and (boundp 'lazy-lock-mode) (symbol-value 'lazy-lock-mode))
-        (ps-lazify start end))))
+        (lazy-lock-fontify-region start end))))
 
 
 (defun ps-generate-postscript-with-faces (from to)