From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A5734C433DB for ; Tue, 9 Mar 2021 00:21:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 67D8864FFD for ; Tue, 9 Mar 2021 00:21:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230327AbhCIAUm (ORCPT ); Mon, 8 Mar 2021 19:20:42 -0500 Received: from ms.lwn.net ([45.79.88.28]:43152 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231246AbhCIAUa (ORCPT ); Mon, 8 Mar 2021 19:20:30 -0500 X-Greylist: delayed 1633 seconds by postgrey-1.27 at vger.kernel.org; Mon, 08 Mar 2021 19:20:30 EST Received: from localhost (unknown [IPv6:2601:281:8300:104d::5f6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id CFEF92B0; Tue, 9 Mar 2021 00:20:29 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net CFEF92B0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1615249230; bh=aAJj+JuWRyhVw+3NtR9KNDnI/NEk/+8wsjAwCp0HeT0=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=K9DjD/1XsyrFpPNYEeWehCq7kg/sUE7/Hs0svkg2KeXVtAbmEpW9dQdQaEhrdzCHf yKOp9D1XqeDooXtyfIvwNfAlNeQ/TARgvBbZhge2Tj0muy/46sgXfTKvLMKf3w9ys4 k/1ghMYP+Sq/LKhEYqffuk8nwnl2q++fjc1g+4PHXsKG0oQDsAgkL8LPTFvebOxR+V g6izNcv3faf7+Af1MSeAkIIDxgWJ0/LylG4HXLy4szuHPDloriOnXOISW8L4i9D4GA tcdnsZcoFsNZ8JUrFDjT/pXxXybc+qnwALn114/LFCrbltvy55xKeozDWr0jaV2bCU nJo2FaC866oxQ== From: Jonathan Corbet To: Mauro Carvalho Chehab , Linux Media Mailing List Cc: linuxarm@huawei.com, mauro.chehab@huawei.com, Mauro Carvalho Chehab , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] docs: conf.py: adjust the LaTeX document output In-Reply-To: <911fbac185dd09c7df715cf4153361b81f04b7ad.1614787053.git.mchehab+huawei@kernel.org> References: <911fbac185dd09c7df715cf4153361b81f04b7ad.1614787053.git.mchehab+huawei@kernel.org> Date: Mon, 08 Mar 2021 17:20:29 -0700 Message-ID: <87o8ft41pu.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Mauro Carvalho Chehab writes: > Changeset f546ff0c0c07 ("Move our minimum Sphinx version to 1.7") > cleaned up some compatibility issues with previous Sphinx > versions, but it also dropped the PDF margin sets. > > Without that, the media documentation won't build fine, as > the margins are too wide to display texts with monospaced > fonts. > > While here, align the "latex_elements = {" values, and add > a few other sphinxsetup configs in order to allow Sphinx to > wrap long lines on literal blocks. > > Fixes: f546ff0c0c07 ("Move our minimum Sphinx version to 1.7") > Signed-off-by: Mauro Carvalho Chehab > > Documentation/conf.py | 31 +++++++++++++++++++------------ > 1 file changed, 19 insertions(+), 12 deletions(-) Applied, thanks. jon