X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/0d9f702fd085bc8ad560a3e1f08d5e93054a5d33..c49e22560237d246bb2a5351b0c207559929ae52:/lisp/ps-def.el diff --git a/lisp/ps-def.el b/lisp/ps-def.el index 0a7a6e0157..468af28240 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, 2011 Free Software Foundation, Inc. +;; Copyright (C) 2007-2013 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)) ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;