aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorPaul Eggert2016-12-07 11:29:54 -0800
committerPaul Eggert2016-12-07 11:31:16 -0800
commiteeecac7ab9d1f8c3a29cffe4586e5fd2414dd671 (patch)
treed1233bba4917ba56b357746e1f0ad921b6174724 /lisp/org
parentda71c89ba39f500f4c65d986863512f293934401 (diff)
downloademacs-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.el2
-rw-r--r--lisp/org/ox-latex.el6
-rw-r--r--lisp/org/ox-man.el2
-rw-r--r--lisp/org/ox-odt.el2
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.
303The cdr is the value as a string. For example, if you'd like to use the 303The cdr is the value as a string. For example, if you'd like to use the
304speed of light in a formula, you would configure 304speed 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
308and then use it in an equation like `$1*$c'. 308and 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
690value. For example, 690value. 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
696will typeset the code in a small size font with underlined, bold 696will 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
737value. For example, 737value. 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
742will result in src blocks being exported with 742will 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
758latex packages. For example, 758latex 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
763would have the effect that if org encounters begin_src python 763would have the effect that if org encounters begin_src python
764during latex export it will output 764during 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
207man packages. For example, 207man 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
212would have the effect that if org encounters begin_src python 212would have the effect that if org encounters begin_src python
213during man export." 213during 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
852For example, with the following configuration 852For 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\"