# HG changeset patch # User Kenichi Handa # Date 947060039 0 # Node ID 7e06ce5ebfe31ec6666fd34437a116d062bd1af0 # Parent ea8740d151781f933354d86e8e0113bbba9d9392 *** empty log message *** diff -r ea8740d15178 -r 7e06ce5ebfe3 etc/ChangeLog --- a/etc/ChangeLog Wed Jan 05 08:11:30 2000 +0000 +++ b/etc/ChangeLog Wed Jan 05 08:13:59 2000 +0000 @@ -1,3 +1,7 @@ +2000-01-05 Vinicius Jose Latorre + + * ps-prin1.ps, ps-prin2.ps, ps-prin3.ps: New files. + 1999-11-30 Paul Eggert * PROBLEMS: Update Solaris 2.6 and 7 problems. diff -r ea8740d15178 -r 7e06ce5ebfe3 lisp/ChangeLog --- a/lisp/ChangeLog Wed Jan 05 08:11:30 2000 +0000 +++ b/lisp/ChangeLog Wed Jan 05 08:13:59 2000 +0000 @@ -1,4 +1,4 @@ -Fri Dec 24 12:29:11 1999 Vinicius Jose Latorre +2000-01-05 Vinicius Jose Latorre * ps-print.el: PostScript code now is in separate files, doc fix. (ps-print-version): New version number (5.0.3). diff -r ea8740d15178 -r 7e06ce5ebfe3 lisp/loaddefs.el --- a/lisp/loaddefs.el Wed Jan 05 08:11:30 2000 +0000 +++ b/lisp/loaddefs.el Wed Jan 05 08:13:59 2000 +0000 @@ -10569,10 +10569,53 @@ ;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-initialize ;;;;;; ps-mule-plot-composition ps-mule-plot-string ps-mule-set-ascii-font -;;;;;; ps-mule-prepare-ascii-font) "ps-mule" "ps-mule.el" (14423 -;;;;;; 50875)) +;;;;;; ps-mule-prepare-ascii-font ps-multibyte-buffer) "ps-mule" +;;;;;; "ps-mule.el" (14450 60461)) ;;; Generated autoloads from ps-mule.el +(defvar ps-multibyte-buffer nil "\ +*Specifies the multi-byte buffer handling. + +Valid values are: + + nil This is the value to use the default settings which + is by default for printing buffer with only ASCII + and Latin characters. The default setting can be + changed by setting the variable + `ps-mule-font-info-database-default' differently. + The initial value of this variable is + `ps-mule-font-info-database-latin' (see + documentation). + + `non-latin-printer' This is the value to use when you have a Japanese + or Korean PostScript printer and want to print + buffer with ASCII, Latin-1, Japanese (JISX0208 and + JISX0201-Kana) and Korean characters. At present, + it was not tested the Korean characters printing. + If you have a korean PostScript printer, please, + test it. + + `bdf-font' This is the value to use when you want to print + buffer with BDF fonts. BDF fonts include both latin + and non-latin fonts. BDF (Bitmap Distribution + Format) is a format used for distributing X's font + source file. BDF fonts are included in + `intlfonts-1.1' which is a collection of X11 fonts + for all characters supported by Emacs. In order to + use this value, be sure to have installed + `intlfonts-1.1' and set the variable + `bdf-directory-list' appropriately (see ps-bdf.el for + documentation of this variable). + + `bdf-font-except-latin' This is like `bdf-font' except that it is used + PostScript default fonts to print ASCII and Latin-1 + characters. This is convenient when you want or + need to use both latin and non-latin characters on + the same buffer. See `ps-font-family', + `ps-header-font-family' and `ps-font-info-database'. + +Any other value is treated as nil.") + (autoload (quote ps-mule-prepare-ascii-font) "ps-mule" "\ Setup special ASCII font for STRING. STRING should contain only ASCII characters." nil nil) diff -r ea8740d15178 -r 7e06ce5ebfe3 lisp/ps-vars.el --- a/lisp/ps-vars.el Wed Jan 05 08:11:30 2000 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,96 +0,0 @@ -;;; ps-vars.el --- Common definitions for ps-print package - -;; Copyright (C) 1999 Free Software Foundation, Inc. - -;; Author: Vinicius Jose Latorre -;; Maintainer: Vinicius Jose Latorre -;; Keywords: wp, print, PostScript -;; Time-stamp: <99/07/03 20:16:48 vinicius> -;; Version: 1.0 - -;; This file is part of GNU Emacs. - -;; GNU Emacs is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 2, or (at your option) -;; any later version. - -;; GNU Emacs is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to the -;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, -;; Boston, MA 02111-1307, USA. - -;;; Commentary: - -;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; -;; Common definitions for ps-print package. -;; -;; See ps-print.el, ps-mule.el and ps-bdf.el for documentation. -;; -;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;;; Code: - - -;; `ps-multibyte-buffer' definition should be placed in `ps-mule', but -;; `ps-print' and `ps-mule' both use it so it's here. - -(defcustom ps-multibyte-buffer nil - "*Specify the multi-byte buffer handling. - -Valid values are: - - nil This is the value to use the default settings which - is by default for printing buffer with only ASCII - and Latin characters. The default setting can be - changed by setting the variable - `ps-mule-font-info-database-default' differently. - The initial value of this variable is - `ps-mule-font-info-database-latin' (see - documentation). - - `non-latin-printer' This is the value to use when you have a Japanese - or Korean PostScript printer and want to print - buffer with ASCII, Latin-1, Japanese (JISX0208 and - JISX0201-Kana) and Korean characters. At present, - it was not tested the Korean characters printing. - If you have a korean PostScript printer, please, - test it. - - `bdf-font' This is the value to use when you want to print - buffer with BDF fonts. BDF fonts include both latin - and non-latin fonts. BDF (Bitmap Distribution - Format) is a format used for distributing X's font - source file. BDF fonts are included in - `intlfonts-1.1' which is a collection of X11 fonts - for all characters supported by Emacs. In order to - use this value, be sure to have installed - `intlfonts-1.1' and set the variable - `bdf-directory-list' appropriately (see ps-bdf.el for - documentation of this variable). - - `bdf-font-except-latin' This is like `bdf-font' except that it is used - PostScript default fonts to print ASCII and Latin-1 - characters. This is convenient when you want or - need to use both latin and non-latin characters on - the same buffer. See `ps-font-family', - `ps-header-font-family' and `ps-font-info-database'. - -Any other value is treated as nil." - :type '(choice :tag "Multi-Byte Buffer" - (const non-latin-printer) (const bdf-font) - (const bdf-font-except-latin) (other :tag "nil" nil)) - :group 'ps-print-font) - - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(provide 'ps-vars) - -;;; ps-vars.el ends here