X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/d1d6801eb4badab97416d0b6294e1920d0f90c3e..a3dae87a1b5405d2bffde7c2d829a5dbfc7ff274:/lisp/ps-def.el diff --git a/lisp/ps-def.el b/lisp/ps-def.el index 9122b8fdc9..639183e5ab 100644 --- a/lisp/ps-def.el +++ b/lisp/ps-def.el @@ -1,6 +1,6 @@ ;;; ps-def.el --- XEmacs and Emacs definitions for ps-print -;; Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +;; Copyright (C) 2007-2011 Free Software Foundation, Inc. ;; Author: Vinicius Jose Latorre ;; Kenichi Handa (multi-byte characters) @@ -32,7 +32,7 @@ ;;; Code: (eval-and-compile - (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) + (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)) @@ -60,13 +60,13 @@ ;; ps-mule (or (fboundp 'charset-dimension) - (defun charset-dimension (charset) 1)) ; ascii + (defun charset-dimension (_charset) 1)) ; ascii (or (fboundp 'char-width) - (defun char-width (char) 1)) ; ascii + (defun char-width (_char) 1)) ; ascii (or (fboundp 'encode-char) - (defun encode-char (ch ccs) + (defun encode-char (ch _ccs) ch)) ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -402,5 +402,4 @@ (provide 'ps-def) -;; arch-tag: 4edde45b-af10-4685-b8ee-7cd0f951095a ;;; ps-def.el ends here