aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Pluim2024-02-29 09:29:04 +0100
committerRobert Pluim2024-02-29 09:31:41 +0100
commit862dfef88d8e62d12bac3ca2e44e035a2ff5b298 (patch)
tree19922350e4f431814bd051a47c4fc9dcce43a712
parent15ed441fd53ddb476a2a21c8717697a74cf094e1 (diff)
downloademacs-862dfef88d8e62d12bac3ca2e44e035a2ff5b298.tar.gz
emacs-862dfef88d8e62d12bac3ca2e44e035a2ff5b298.zip
Pacify more docstring control char warnings
* lisp/org/org-macs.el (org-split-string): Escape control chars. * lisp/org/ox-latex.el (org-latex-guess-babel-language): And here.
-rw-r--r--lisp/org/org-macs.el2
-rw-r--r--lisp/org/ox-latex.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-macs.el b/lisp/org/org-macs.el
index 2332c0c927c..aafbdf0e0aa 100644
--- a/lisp/org/org-macs.el
+++ b/lisp/org/org-macs.el
@@ -982,7 +982,7 @@ Otherwise, return nil."
982 "Splits STRING into substrings at SEPARATORS. 982 "Splits STRING into substrings at SEPARATORS.
983 983
984SEPARATORS is a regular expression. When nil, it defaults to 984SEPARATORS is a regular expression. When nil, it defaults to
985\"[ \f\t\n\r\v]+\". 985\"[ \\f\\t\\n\\r\\v]+\".
986 986
987Unlike `split-string', matching SEPARATORS at the beginning and 987Unlike `split-string', matching SEPARATORS at the beginning and
988end of string are ignored." 988end of string are ignored."
diff --git a/lisp/org/ox-latex.el b/lisp/org/ox-latex.el
index b409f552a2b..bca387e5935 100644
--- a/lisp/org/ox-latex.el
+++ b/lisp/org/ox-latex.el
@@ -1632,7 +1632,7 @@ explicitly been loaded. Then it is added to the rest of
1632package's options. 1632package's options.
1633 1633
1634The optional argument to Babel or the mandatory argument to 1634The optional argument to Babel or the mandatory argument to
1635`\babelprovide' command may be \"AUTO\" which is then replaced 1635`\\babelprovide' command may be \"AUTO\" which is then replaced
1636with the language of the document or 1636with the language of the document or
1637`org-export-default-language' unless language in question is 1637`org-export-default-language' unless language in question is
1638already loaded. 1638already loaded.