diff options
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2007-08-17 01:43:06 +0000 |
---|---|---|
committer | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2007-08-17 01:43:06 +0000 |
commit | f360c323b15127ac26191b93046dd916e0b52716 (patch) | |
tree | f68745f90bbf0e8b0ce5bc3c2c57de4812e11853 | |
parent | 6c8cb7016048ee0d5c5ebc6260a009e2a3ef1e61 (diff) | |
download | emacs-f360c323b15127ac26191b93046dd916e0b52716.tar.gz |
Docstring fix
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/ps-print.el | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c80094ec812..ee9e1726177 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,8 @@ 2007-08-16 Vinicius Jose Latorre <viniciusjl@ig.com.br> * ps-print.el (ps-header-font-size, ps-header-title-font-size) - (ps-footer-font-size, ps-line-number-font-size): Docstring fix. + (ps-footer-font-size, ps-line-number-font-size, ps-line-spacing) + (ps-paragraph-spacing): Docstring fix. 2007-08-16 Stefan Monnier <monnier@iro.umontreal.ca> diff --git a/lisp/ps-print.el b/lisp/ps-print.el index aac74b3b51a..83367a06f60 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -3362,6 +3362,8 @@ By default, this directory is the same as in the variable `data-directory'." (defcustom ps-line-spacing 0 "*Specify line spacing, in points, for ordinary text. +Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE). + See also `ps-paragraph-spacing' and `ps-paragraph-regexp'. To get all lines with some spacing set both `ps-line-spacing' and @@ -3378,6 +3380,8 @@ To get all lines with some spacing set both `ps-line-spacing' and (defcustom ps-paragraph-spacing 0 "*Specify paragraph spacing, in points, for ordinary text. +Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE). + See also `ps-line-spacing' and `ps-paragraph-regexp'. To get all lines with some spacing set both `ps-line-spacing' and |