Backport commit 862dfef88 from Emacs

* lisp/org-macs.el (org-split-string): Escape control chars.
* lisp/ox-latex.el (org-latex-guess-babel-language): And here.

Pacify more docstring control char warnings
862dfef88d8e62d12bac3ca2e44e035a2ff5b298
Robert Pluim
Thu Feb 29 09:31:41 2024 +0100
This commit is contained in:
Robert Pluim 2024-02-29 09:29:04 +01:00 committed by Kyle Meyer
parent 6c34fd374c
commit 5a176d76ad
2 changed files with 2 additions and 2 deletions

View File

@ -982,7 +982,7 @@ Otherwise, return nil."
"Splits STRING into substrings at SEPARATORS. "Splits STRING into substrings at SEPARATORS.
SEPARATORS is a regular expression. When nil, it defaults to SEPARATORS is a regular expression. When nil, it defaults to
\"[ \f\t\n\r\v]+\". \"[ \\f\\t\\n\\r\\v]+\".
Unlike `split-string', matching SEPARATORS at the beginning and Unlike `split-string', matching SEPARATORS at the beginning and
end of string are ignored." end of string are ignored."

View File

@ -1632,7 +1632,7 @@ explicitly been loaded. Then it is added to the rest of
package's options. package's options.
The optional argument to Babel or the mandatory argument to The optional argument to Babel or the mandatory argument to
`\babelprovide' command may be \"AUTO\" which is then replaced `\\babelprovide' command may be \"AUTO\" which is then replaced
with the language of the document or with the language of the document or
`org-export-default-language' unless language in question is `org-export-default-language' unless language in question is
already loaded. already loaded.