aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-20 21:33:29 +0000
committerJuanma Barranquero2005-07-20 21:33:29 +0000
commit01cdabc616023c38eb645ea8d1ac74dc848f4eeb (patch)
tree56ab6198c9e6c660140885d457a71c5e93f3e15d
parente05a39ba98ab9d4de28e21704b1555fac9aae744 (diff)
downloademacs-01cdabc616023c38eb645ea8d1ac74dc848f4eeb.tar.gz
emacs-01cdabc616023c38eb645ea8d1ac74dc848f4eeb.zip
(ps-extend-face-list, ps-extend-face, ps-print-background-image): Fix typos in
docstrings. (ps-default-fg, ps-default-bg): Doc fixes.
-rw-r--r--lisp/ps-print.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/ps-print.el b/lisp/ps-print.el
index 484c207e074..85cc5dda49d 100644
--- a/lisp/ps-print.el
+++ b/lisp/ps-print.el
@@ -2269,7 +2269,7 @@ programming like EPS.
2269FILENAME is ignored, if it doesn't exist or is read protected. 2269FILENAME is ignored, if it doesn't exist or is read protected.
2270 2270
2271X and Y are relative positions on paper to put the image. 2271X and Y are relative positions on paper to put the image.
2272If X and Y are nil, the image is centralized on paper. 2272If X and Y are nil, the image is centered on paper.
2273 2273
2274XSCALE and YSCALE are scale factor to be applied to image before printing. 2274XSCALE and YSCALE are scale factor to be applied to image before printing.
2275If XSCALE and YSCALE are nil, the original size is used. 2275If XSCALE and YSCALE are nil, the original size is used.
@@ -3031,7 +3031,7 @@ Valid values are:
3031 Where RED, GREEN and BLUE are reals between 0.0 (no color) and 3031 Where RED, GREEN and BLUE are reals between 0.0 (no color) and
3032 1.0 (full color). 3032 1.0 (full color).
3033 3033
3034Any other value is ignored and it's used the black color. 3034Any other value is ignored and black will be used.
3035 3035
3036It's used only when `ps-print-color-p' is non-nil." 3036It's used only when `ps-print-color-p' is non-nil."
3037 :type '(choice :menu-tag "Default Foreground Gray/Color" 3037 :type '(choice :menu-tag "Default Foreground Gray/Color"
@@ -3071,7 +3071,7 @@ Valid values are:
3071 Where RED, GREEN and BLUE are reals between 0.0 (no color) and 3071 Where RED, GREEN and BLUE are reals between 0.0 (no color) and
3072 1.0 (full color). 3072 1.0 (full color).
3073 3073
3074Any other value is ignored and it's used the white color. 3074Any other value is ignored and white will be used.
3075 3075
3076It's used only when `ps-print-color-p' is non-nil. 3076It's used only when `ps-print-color-p' is non-nil.
3077 3077
@@ -4137,10 +4137,10 @@ Each symbol correspond to one bit in a bit vector.")
4137If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged 4137If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged
4138with face extension in ALIST-SYM; otherwise, overrides. 4138with face extension in ALIST-SYM; otherwise, overrides.
4139 4139
4140If optional ALIST-SYM is nil, it's used `ps-print-face-extension-alist'; 4140If optional ALIST-SYM is nil, `ps-print-face-extension-alist' is used;
4141otherwise, it should be an alist symbol. 4141otherwise, it should be an alist symbol.
4142 4142
4143The elements in FACE-EXTENSION-LIST is like those for `ps-extend-face'. 4143The elements in FACE-EXTENSION-LIST are like those for `ps-extend-face'.
4144 4144
4145See `ps-extend-face' for documentation." 4145See `ps-extend-face' for documentation."
4146 (while face-extension-list 4146 (while face-extension-list
@@ -4155,7 +4155,7 @@ See `ps-extend-face' for documentation."
4155If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged 4155If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged
4156with face extensions in ALIST-SYM; otherwise, overrides. 4156with face extensions in ALIST-SYM; otherwise, overrides.
4157 4157
4158If optional ALIST-SYM is nil, it's used `ps-print-face-extension-alist'; 4158If optional ALIST-SYM is nil, `ps-print-face-extension-alist' is used;
4159otherwise, it should be an alist symbol. 4159otherwise, it should be an alist symbol.
4160 4160
4161The elements of FACE-EXTENSION list have the form: 4161The elements of FACE-EXTENSION list have the form:
@@ -5004,7 +5004,7 @@ page-height == ((floor print-height ((th + ls) * zh)) * ((th + ls) * zh)) - th
5004 "PrintHeight 2 div BottomMargin add") 5004 "PrintHeight 2 div BottomMargin add")
5005 "\nBeginBackImage\n") 5005 "\nBeginBackImage\n")
5006 (ps-insert-file image-file) 5006 (ps-insert-file image-file)
5007 ;; coordinate adjustment to centralize image 5007 ;; coordinate adjustment to center image
5008 ;; around x and y position 5008 ;; around x and y position
5009 (let ((box (ps-get-boundingbox))) 5009 (let ((box (ps-get-boundingbox)))
5010 (save-excursion 5010 (save-excursion