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 3974EC31E4B for ; Fri, 14 Jun 2019 16:18:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 05CBA21848 for ; Fri, 14 Jun 2019 16:18:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560529122; bh=dE90nthqMENvAzRAL+ZRMLD+AqNO90WL38msCIgtbPA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=c55e9+EOTVN4u1YY91Z+KrHMfSCxKEdqLYm9TJU3EYzyAQDjCFcMGi0isAJt6fQiS pI9CNlNpwXvcVvUq8fafXiVO2D0ODjd+IHEnUv8fCZyf4B4+tx6D2cYpQ52eqW36Zp TcmEyIJDg2Q4E/WFxayJfbrKFQUZxBxiz09UBpR0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726264AbfFNQSk (ORCPT ); Fri, 14 Jun 2019 12:18:40 -0400 Received: from mail.kernel.org ([198.145.29.99]:52794 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725801AbfFNQSk (ORCPT ); Fri, 14 Jun 2019 12:18:40 -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 4178721841; Fri, 14 Jun 2019 16:18:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560529119; bh=dE90nthqMENvAzRAL+ZRMLD+AqNO90WL38msCIgtbPA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=NK2lJvEV1z5bNiYfVSO330B3jUXdaXrzTocVp67nWE5GzYVehzCymhsfoVkICdAwA hc1/moHRv7T2JHXvRk/7fooH0TgvtqI08UDrKYk2CWw+HyYXfc8OxlnI80grAu963P TK4fEOaqTsAES2HHc7SbYx/rKcjfAqaixxCXL9RM= Date: Fri, 14 Jun 2019 18:18:37 +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: <20190614161837.GA25206@kroah.com> References: <62c8ffe86df40c90299e80619a1cb5d50971c2c6.1560477540.git.mchehab+samsung@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <62c8ffe86df40c90299e80619a1cb5d50971c2c6.1560477540.git.mchehab+samsung@kernel.org> 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 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? Why change this? thanks, greg k-h