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=-8.2 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_MUTT 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 A7EB6C31E47 for ; Sat, 15 Jun 2019 06:16:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7CCA32184C for ; Sat, 15 Jun 2019 06:16:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560579387; bh=BjtkEmRJtAtHKEHwhGfkDFvic+g9qJNlH8cwQrXk1/M=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=Em0LUKd+20SrXoOAKPfc/fHMjeM4CrOSdd1+zwh9M2GtgTvXN2d/Pnpn/J4+E5pVi ZShUsY+3eiURudVBT7O29swvKyNhIFW2Cxu+HKECBHRmkHkbLYrbDVvzzrI7tvLpi9 gSezhGTy8rdMvLdheds7m7+lOf/D7kZGCcFyXVFo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726309AbfFOGQI (ORCPT ); Sat, 15 Jun 2019 02:16:08 -0400 Received: from mail.kernel.org ([198.145.29.99]:35580 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725786AbfFOGQH (ORCPT ); Sat, 15 Jun 2019 02:16:07 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 628282184C; Sat, 15 Jun 2019 06:16:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560579366; bh=BjtkEmRJtAtHKEHwhGfkDFvic+g9qJNlH8cwQrXk1/M=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=vd9RF7LOMmXbG79sY4uZhNiG2CZedC82zVAmk/8XnMhtyblNBvzhxgpVw5i30L9Np 0m4nFT6POp7H5TTQQn6IL3ZU23ghGL0Lejze1Lh5vcmFln8nrZz10XTDOxksVYtn6C pAle1+Pbjhp3sSeMa9qKEut95kqunfd7r4qrP5ok= Date: Sat, 15 Jun 2019 08:16:04 +0200 From: Greg Kroah-Hartman To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet Subject: Re: [PATCH 14/14] docs: sphinx/kernel_abi.py: fix UTF-8 support Message-ID: <20190615061604.GA31006@kroah.com> References: <62c8ffe86df40c90299e80619a1cb5d50971c2c6.1560477540.git.mchehab+samsung@kernel.org> <20190614161837.GA25206@kroah.com> <20190614132530.7a013757@coco.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190614132530.7a013757@coco.lan> User-Agent: Mutt/1.12.0 (2019-05-25) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jun 14, 2019 at 01:25:30PM -0300, Mauro Carvalho Chehab wrote: > Em Fri, 14 Jun 2019 18:18:37 +0200 > Greg Kroah-Hartman escreveu: > > > On Thu, Jun 13, 2019 at 11:04:20PM -0300, Mauro Carvalho Chehab wrote: > > > The parser breaks with UTF-8 characters with Sphinx 1.4. > > > > > > Signed-off-by: Mauro Carvalho Chehab > > > --- > > > Documentation/sphinx/kernel_abi.py | 10 ++++++---- > > > 1 file changed, 6 insertions(+), 4 deletions(-) > > > > > > diff --git a/Documentation/sphinx/kernel_abi.py b/Documentation/sphinx/kernel_abi.py > > > index 7fa7806532dc..460cee48a245 100644 > > > --- a/Documentation/sphinx/kernel_abi.py > > > +++ b/Documentation/sphinx/kernel_abi.py > > > @@ -1,4 +1,5 @@ > > > -# -*- coding: utf-8; mode: python -*- > > > +# coding=utf-8 > > > +# > > > > Is this an emacs vs. vim fight? > > No. This is a python-specific thing: > > https://www.python.org/dev/peps/pep-0263/ Ah, thanks, didn't know that. greg k-h