diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-12-07 11:29:54 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-12-07 11:31:16 -0800 |
commit | eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671 (patch) | |
tree | d1233bba4917ba56b357746e1f0ad921b6174724 /lisp/org/ox-latex.el | |
parent | da71c89ba39f500f4c65d986863512f293934401 (diff) | |
download | emacs-eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671.tar.gz emacs-eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671.tar.bz2 emacs-eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671.zip |
Fix minor quoting problems in doc strings
Diffstat (limited to 'lisp/org/ox-latex.el')
-rw-r--r-- | lisp/org/ox-latex.el | 6 |
1 files changed, 3 insertions, 3 deletions
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 value. For example, (setq org-latex-listings-options - '((\"basicstyle\" \"\\\\small\") + \\='((\"basicstyle\" \"\\\\small\") (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\"))) 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 value. For example, (setq org-latex-minted-options - '((\"bgcolor\" \"bg\") (\"frame\" \"lines\"))) + \\='((\"bgcolor\" \"bg\") (\"frame\" \"lines\"))) will result in src blocks being exported with @@ -758,7 +758,7 @@ It is used during export of src blocks by the listings and minted latex packages. For example, (setq org-latex-custom-lang-environments - '((python \"pythoncode\"))) + \\='((python \"pythoncode\"))) would have the effect that if org encounters begin_src python during latex export it will output |