diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-01 18:21:42 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-01 18:23:21 -0700 |
commit | 19532d147b431a4fe34f088d6de07891c48e2c5c (patch) | |
tree | 19baea54fefb82f849ed67e49a287a715fe050cc /lisp/ps-print.el | |
parent | 5dc644a6b01e2cf950ff617ab15be4bf1917c38c (diff) | |
download | emacs-19532d147b431a4fe34f088d6de07891c48e2c5c.tar.gz |
Escape ` and ' in doc
Escape apostrophes and grave accents in docstrings if they are
are supposed to stand for themselves and are not quotes. Remove
apostrophes from docstring examples like ‘'(calendar-nth-named-day
-1 0 10 year)’ that confuse source code with data. Do some other
minor docstring fixups as well, e.g., insert a missing close
quote.
Diffstat (limited to 'lisp/ps-print.el')
-rw-r--r-- | lisp/ps-print.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/ps-print.el b/lisp/ps-print.el index faafe9ce87f..218a02a7f6d 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -1953,7 +1953,7 @@ If you set option `ps-selected-pages', first the pages are filtered by option `ps-selected-pages' and then by `ps-even-or-odd-pages'. For example, if we have: - (setq ps-selected-pages '(1 4 (6 . 10) (12 . 16) 20)) + (setq ps-selected-pages \\='(1 4 (6 . 10) (12 . 16) 20)) Combining with `ps-even-or-odd-pages' and option `ps-n-up-printing', we have: @@ -2249,9 +2249,9 @@ X, Y, XSCALE, YSCALE and ROTATION may be a floating point number, an integer number or a string. If it is a string, the string should contain PostScript programming that returns a float or integer value. -For example, if you wish to print an EPS image on all pages do: +For example, if you wish to print an EPS image on all pages use: - '((\"~/images/EPS-image.ps\"))" + ((\"~/images/EPS-image.ps\"))" :type '(repeat (list (file :tag "EPS File") @@ -2300,9 +2300,9 @@ X, Y, FONTSIZE, GRAY and ROTATION may be a floating point number, an integer number or a string. If it is a string, the string should contain PostScript programming that returns a float or integer value. -For example, if you wish to print text \"Preliminary\" on all pages do: +For example, if you wish to print text \"Preliminary\" on all pages use: - '((\"Preliminary\"))" + ((\"Preliminary\"))" :type '(repeat (list (string :tag "Text") |