diff options
| author | Paul Eggert | 2016-12-07 11:29:54 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-12-07 11:31:16 -0800 |
| commit | eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671 (patch) | |
| tree | d1233bba4917ba56b357746e1f0ad921b6174724 /lisp/org | |
| parent | da71c89ba39f500f4c65d986863512f293934401 (diff) | |
| download | emacs-eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671.tar.gz emacs-eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671.zip | |
Fix minor quoting problems in doc strings
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/org-table.el | 2 | ||||
| -rw-r--r-- | lisp/org/ox-latex.el | 6 | ||||
| -rw-r--r-- | lisp/org/ox-man.el | 2 | ||||
| -rw-r--r-- | lisp/org/ox-odt.el | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el index 20334f30504..3292590e8ed 100644 --- a/lisp/org/org-table.el +++ b/lisp/org/org-table.el | |||
| @@ -303,7 +303,7 @@ The car of each element is a name of a constant, without the `$' before it. | |||
| 303 | The cdr is the value as a string. For example, if you'd like to use the | 303 | The cdr is the value as a string. For example, if you'd like to use the |
| 304 | speed of light in a formula, you would configure | 304 | speed of light in a formula, you would configure |
| 305 | 305 | ||
| 306 | (setq org-table-formula-constants '((\"c\" . \"299792458.\"))) | 306 | (setq org-table-formula-constants \\='((\"c\" . \"299792458.\"))) |
| 307 | 307 | ||
| 308 | and then use it in an equation like `$1*$c'. | 308 | and then use it in an equation like `$1*$c'. |
| 309 | 309 | ||
diff --git a/lisp/org/ox-latex.el b/lisp/org/ox-latex.el index 2734f90db06..db4075e6612 100644 --- a/lisp/org/ox-latex.el +++ b/lisp/org/ox-latex.el | |||
| @@ -690,7 +690,7 @@ a list containing two strings: the name of the option, and the | |||
| 690 | value. For example, | 690 | value. For example, |
| 691 | 691 | ||
| 692 | (setq org-latex-listings-options | 692 | (setq org-latex-listings-options |
| 693 | '((\"basicstyle\" \"\\\\small\") | 693 | \\='((\"basicstyle\" \"\\\\small\") |
| 694 | (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\"))) | 694 | (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\"))) |
| 695 | 695 | ||
| 696 | will typeset the code in a small size font with underlined, bold | 696 | will typeset the code in a small size font with underlined, bold |
| @@ -737,7 +737,7 @@ be a list containing two strings: the name of the option, and the | |||
| 737 | value. For example, | 737 | value. For example, |
| 738 | 738 | ||
| 739 | (setq org-latex-minted-options | 739 | (setq org-latex-minted-options |
| 740 | '((\"bgcolor\" \"bg\") (\"frame\" \"lines\"))) | 740 | \\='((\"bgcolor\" \"bg\") (\"frame\" \"lines\"))) |
| 741 | 741 | ||
| 742 | will result in src blocks being exported with | 742 | will result in src blocks being exported with |
| 743 | 743 | ||
| @@ -758,7 +758,7 @@ It is used during export of src blocks by the listings and minted | |||
| 758 | latex packages. For example, | 758 | latex packages. For example, |
| 759 | 759 | ||
| 760 | (setq org-latex-custom-lang-environments | 760 | (setq org-latex-custom-lang-environments |
| 761 | '((python \"pythoncode\"))) | 761 | \\='((python \"pythoncode\"))) |
| 762 | 762 | ||
| 763 | would have the effect that if org encounters begin_src python | 763 | would have the effect that if org encounters begin_src python |
| 764 | during latex export it will output | 764 | during latex export it will output |
diff --git a/lisp/org/ox-man.el b/lisp/org/ox-man.el index 4d9dae5f765..1408e1476d7 100644 --- a/lisp/org/ox-man.el +++ b/lisp/org/ox-man.el | |||
| @@ -207,7 +207,7 @@ It is used during export of src blocks by the listings and | |||
| 207 | man packages. For example, | 207 | man packages. For example, |
| 208 | 208 | ||
| 209 | (setq org-man-custom-lang-environments | 209 | (setq org-man-custom-lang-environments |
| 210 | '((python \"pythoncode\"))) | 210 | \\='((python \"pythoncode\"))) |
| 211 | 211 | ||
| 212 | would have the effect that if org encounters begin_src python | 212 | would have the effect that if org encounters begin_src python |
| 213 | during man export." | 213 | during man export." |
diff --git a/lisp/org/ox-odt.el b/lisp/org/ox-odt.el index f2b0c9198b7..944437b56cf 100644 --- a/lisp/org/ox-odt.el +++ b/lisp/org/ox-odt.el | |||
| @@ -852,7 +852,7 @@ ON-OR-OFF := t | nil | |||
| 852 | For example, with the following configuration | 852 | For example, with the following configuration |
| 853 | 853 | ||
| 854 | \(setq org-odt-table-styles | 854 | \(setq org-odt-table-styles |
| 855 | '((\"TableWithHeaderRowsAndColumns\" \"Custom\" | 855 | \\='((\"TableWithHeaderRowsAndColumns\" \"Custom\" |
| 856 | ((use-first-row-styles . t) | 856 | ((use-first-row-styles . t) |
| 857 | (use-first-column-styles . t))) | 857 | (use-first-column-styles . t))) |
| 858 | (\"TableWithHeaderColumns\" \"Custom\" | 858 | (\"TableWithHeaderColumns\" \"Custom\" |