0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-24 20:02:51 +00:00

Fix unescaped \ in docstrings

* lisp/org-macs.el (org-split-string):
* lisp/ox-latex.el (org-latex-guess-babel-language): Fix docstrings,
as revealed by compiler warnings.
This commit is contained in:
Ihor Radchenko 2024-02-27 23:59:21 +03:00
parent bfe253f7eb
commit 80dff08ed1
No known key found for this signature in database
GPG key ID: 6470762A7DA11D8B
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

@ -1633,7 +1633,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.