diff options
| author | Gerd Moellmann | 2001-04-02 10:39:33 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-04-02 10:39:33 +0000 |
| commit | acfb077d9dc52da7dcef2347375b744349b417a8 (patch) | |
| tree | 15dcea4c56b2b1430ae4deec979b8eb27474752d | |
| parent | 0f61512806cc7ccc5df35e1b02561388a0b108a5 (diff) | |
| download | emacs-acfb077d9dc52da7dcef2347375b744349b417a8.tar.gz emacs-acfb077d9dc52da7dcef2347375b744349b417a8.zip | |
*** empty log message ***
| -rw-r--r-- | etc/ChangeLog | 10 | ||||
| -rw-r--r-- | etc/ps-prin2.ps | 34 | ||||
| -rw-r--r-- | lisp/ChangeLog | 53 |
3 files changed, 63 insertions, 34 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index c90c46c95d9..2843d2991be 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2001-04-02 Vinicius Jose Latorre <vinicius@cpqd.com.br> | ||
| 2 | |||
| 3 | * ps-prin1.ps: Line and paragraph spacing feature. | ||
| 4 | (LineHS, ParagraphHS, EffectUnderline, EffectStrikeou, EffectOverline) | ||
| 5 | (EffectShadow, EffectBox, EffectOutline): New vars. | ||
| 6 | (PSL, S, EF, printZebra, doColumnZebra, doZebra): Code fix. | ||
| 7 | (PHL, LHL): New funs. | ||
| 8 | |||
| 9 | * ps-prin2.ps: File eliminated. | ||
| 10 | |||
| 1 | 2001-03-26 Gerd Moellmann <gerd@gnu.org> | 11 | 2001-03-26 Gerd Moellmann <gerd@gnu.org> |
| 2 | 12 | ||
| 3 | * splash.pbm: New image from Luis Fernandes <elf@ee.ryerson.ca>. | 13 | * splash.pbm: New image from Luis Fernandes <elf@ee.ryerson.ca>. |
diff --git a/etc/ps-prin2.ps b/etc/ps-prin2.ps deleted file mode 100644 index 288edf5c47f..00000000000 --- a/etc/ps-prin2.ps +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | % === BEGIN ps-print prologue 2 | ||
| 2 | % version: 6.0 | ||
| 3 | |||
| 4 | % Copyright (C) 2000, 2001 Free Software Foundation, Inc. | ||
| 5 | % | ||
| 6 | % This file is part of GNU Emacs. | ||
| 7 | % | ||
| 8 | % GNU Emacs is free software; you can redistribute it and/or modify | ||
| 9 | % it under the terms of the GNU General Public License as published by | ||
| 10 | % the Free Software Foundation; either version 2, or (at your option) | ||
| 11 | % any later version. | ||
| 12 | % | ||
| 13 | % GNU Emacs is distributed in the hope that it will be useful, | ||
| 14 | % but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | % GNU General Public License for more details. | ||
| 17 | % | ||
| 18 | % You should have received a copy of the GNU General Public License | ||
| 19 | % along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 20 | % Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 21 | % Boston, MA 02111-1307, USA. | ||
| 22 | |||
| 23 | % ---- These lines must be kept together because... | ||
| 24 | |||
| 25 | /h0 F | ||
| 26 | /HeaderTitleLineHeight FontHeight def | ||
| 27 | |||
| 28 | /h1 F | ||
| 29 | /HeaderLineHeight FontHeight def | ||
| 30 | /HeaderDescent Descent def | ||
| 31 | |||
| 32 | % ---- ...because `F' has a side-effect on `FontHeight' and `Descent' | ||
| 33 | |||
| 34 | % === END ps-print prologue 2 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 136561541cd..d1d2e2bb6d6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,56 @@ | |||
| 1 | 2001-04-02 Vinicius Jose Latorre <vinicius@cpqd.com.br> | ||
| 2 | |||
| 3 | * ps-print.el: Line and paragraph spacing feature. Region to cut | ||
| 4 | out when printing. Doc fix. | ||
| 5 | (ps-print-version): New version number (6.5). | ||
| 6 | (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp): New | ||
| 7 | vars. Line and paragraph spacing feature. | ||
| 8 | (ps-begin-cut-regexp, ps-end-cut-regexp): New vars. Region to cut | ||
| 9 | out when printing. | ||
| 10 | (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file) | ||
| 11 | (ps-get-font-size, ps-begin-job, ps-continue-line) | ||
| 12 | (ps-plot-region): Code fix. | ||
| 13 | (ps-print-prologue-2): Var eliminated. | ||
| 14 | (ps-line-spacing-internal, ps-paragraph-spacing-internal): New | ||
| 15 | internal vars. | ||
| 16 | (ps-get-size): New fun. | ||
| 17 | (ps-output-string-prim, ps-init-output-queue, ps-print-page-p) | ||
| 18 | (ps-next-line): Replace defun by defsubst. | ||
| 19 | (ps-mule-plot-string): Autoload doc fix. | ||
| 20 | |||
| 21 | * ps-bdf.el: XEmacs compatibility. Doc fix. | ||
| 22 | (installation-directory, coding-system-for-read): Declare vars if | ||
| 23 | it's not declared yet. | ||
| 24 | (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix. | ||
| 25 | |||
| 26 | * ps-mule.el: XEmacs compatibility. Doc fix. | ||
| 27 | (leading-code-private-22): Declare var if it's not declared yet. | ||
| 28 | (charset-bytes, charset-dimension, charset-id, charset-width) | ||
| 29 | (find-charset-region, split-char, char-width, chars-in-region) | ||
| 30 | (forward-point, decompose-composite-char, encode-coding-string) | ||
| 31 | (coding-system-p, ccl-execute-on-string, define-ccl-program): | ||
| 32 | Define funs if not defined yet. | ||
| 33 | (encode-composition-rule, find-composition): Define funs if not | ||
| 34 | loaded yet. | ||
| 35 | (ps-mule-prologue): PostScript code fix. | ||
| 36 | |||
| 37 | 2001-04-02 Kenichi Handa <handa@etl.go.jp> | ||
| 38 | |||
| 39 | * ps-mule.el (ps-mule-generate-font): New arg HEADER-P. If it is | ||
| 40 | non-nil, generate font for the header strings. | ||
| 41 | (ps-mule-prepare-font): Likewise. | ||
| 42 | (ps-mule-generate-glyphs): Likewise. | ||
| 43 | (ps-mule-string-encoding): Likewise. | ||
| 44 | (ps-mule-header-charsets): New variable. | ||
| 45 | (ps-mule-encode-header-string): New function. | ||
| 46 | (ps-mule-header-string-charsets): New function. | ||
| 47 | (ps-mule-begin-job): Check charsets in the header strings. If there | ||
| 48 | are non-ASCII and non-Latin1 charsets, prepare fonts for them. | ||
| 49 | |||
| 50 | * ps-print.el (ps-generate-header-line): Encode the header string by | ||
| 51 | ps-mule-encode-header-string. | ||
| 52 | (ps-mule-encode-header-string): Declare autoload. | ||
| 53 | |||
| 1 | 2001-04-02 Gerd Moellmann <gerd@gnu.org> | 54 | 2001-04-02 Gerd Moellmann <gerd@gnu.org> |
| 2 | 55 | ||
| 3 | * frame.el (cursor-in-non-selected-windows): Replaces | 56 | * frame.el (cursor-in-non-selected-windows): Replaces |