diff options
author | Akira Yokosawa <[email protected]> | 2021-08-29 11:06:16 +0900 |
---|---|---|
committer | Jonathan Corbet <[email protected]> | 2021-09-06 16:53:39 -0600 |
commit | 7c5c18bdb656057cb76fabfa1a74b793ac49da35 (patch) | |
tree | 6930aba948c31400a4fbf5e8a1e02d2dfa0fb6dd | |
parent | abf36fe0be7d754f2a1c733d684d11474e85b7ea (diff) |
docs: pdfdocs: Fix typo in CJK-language specific font settings
There were typos in the fallback definitions of dummy LaTeX macros
for systems without CJK fonts.
They cause build errors in "make pdfdocs" on such systems.
Fix them.
Fixes: e291ff6f5a03 ("docs: pdfdocs: Add CJK-language-specific font settings")
Signed-off-by: Akira Yokosawa <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jonathan Corbet <[email protected]>
-rw-r--r-- | Documentation/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index 75650f6443af..948a97d6387d 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -463,8 +463,8 @@ latex_elements['preamble'] += ''' \\newcommand{\\kerneldocEndTC}{} \\newcommand{\\kerneldocBeginKR}{} \\newcommand{\\kerneldocEndKR}{} - \\newcommand{\\kerneldocBeginSC}{} - \\newcommand{\\kerneldocEndKR}{} + \\newcommand{\\kerneldocBeginJP}{} + \\newcommand{\\kerneldocEndJP}{} } ''' |