From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <3IVbjXggKClg6FHE28306EE6B4.2ECB81018608BIEKH24M0H4.EH6@flex--gprocida.bounces.google.com> Received: from mail-yb1-xb4a.google.com (mail-yb1-xb4a.google.com [IPv6:2607:f8b0:4864:20::b4a]) by sourceware.org (Postfix) with ESMTPS id 96203387086F for ; Fri, 12 Jun 2020 10:17:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 96203387086F Received: by mail-yb1-xb4a.google.com with SMTP id c3so9979409ybp.8 for ; Fri, 12 Jun 2020 03:17:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:message-id:mime-version:subject:from:to:cc :content-transfer-encoding; bh=k3IlPoY3cvCPqNmsdeNwUZbmS0y4hWsEiJa6u1WQ+08=; b=mQJhlTmKJMoz5kx97bCbzDem/CBtSD6W5UgyHGon8KzRTHUD9Y8OnGqEcJ/siriJDw QPWMn0Rso0ZmQPrC7AoPGymLlpngiiNzuF7ESHIP+TFd/LiS+n2TJi19iDlwKhz2HBni C1WWPpPecUpS/Z89Lf+lBV6STNNBZPC/GUfPtViGjtnV4h3gE3/c8Ci6PpaUElFYuxCJ zvUge+soR7gLo+kGZOOXb3DKEu+rJGjHoLA3lljRM1M9DLNUilGD/fzH29zxLbSgg9Vm Z2Hj44OIdp1bh00chLkAgwDw1/vpYogmGETy2bJfHb4UlvnwSCVyBif2C/cm5TNbgUkR 4Lpw== X-Gm-Message-State: AOAM532sjzAM97SXrct4xYBALlNCdk2T45QDyw+WXoDnUduTXoDEmamQ F6pATjXzke9I1eQSvnSAgVthwSzh9DZsRoZRmVrYdkn2IRBcEKsTMEanFW3BY4elqAFu+wGVv1N gFpkW9gDW1ymKjjSbf4GLehHPIEnE0BLH7SpiCKUpJ0tfL8cRJ3PfF3bFlY4nfmjkSnc0u7w= X-Google-Smtp-Source: ABdhPJz89bRctG9qz2fLkxAvocJfkfebd1Tu+s0AjhO70lt3qCRZZV1qYSiPnJ9nrrYE1oWt9I7xa9T4aEQ4pw== X-Received: by 2002:a25:d992:: with SMTP id q140mr22240627ybg.213.1591957025055; Fri, 12 Jun 2020 03:17:05 -0700 (PDT) Date: Fri, 12 Jun 2020 11:17:01 +0100 Message-Id: <20200612101701.9425-1-gprocida@google.com> Mime-Version: 1.0 X-Mailer: git-send-email 2.27.0.290.gba653c62da-goog Subject: [PATCH] Eliminate non-ASCII characters. From: Giuliano Procida To: libabigail@sourceware.org Cc: dodji@seketeli.org, kernel-team@android.com, gprocida@google.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-24.0 required=5.0 tests=BAYES_00, DKIMWL_WL_MED, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, USER_IN_DEF_DKIM_WL autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libabigail@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Mailing list of the Libabigail project List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2020 10:17:06 -0000 There are few non-ASCII characters in various code comments. A few are typos and the rest have obvious ASCII equivalents. This commit replaces them all with ASCII characters. * include/abg-diff-utils.h: Replace "=E2=80=99=E2=80=99" with "'". * src/abg-elf-helpers.cc: Replace "=E2=8B=85" with ".". * src/abg-ini.cc: Replace "@=C3=AAef" with "@ref". * src/abg-ir.cc: Ditto. * src/abg-tools-utils.cc: Replace "=E2=80=93" with "-". Signed-off-by: Giuliano Procida --- include/abg-diff-utils.h | 2 +- src/abg-elf-helpers.cc | 2 +- src/abg-ini.cc | 4 ++-- src/abg-ir.cc | 4 ++-- src/abg-tools-utils.cc | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/abg-diff-utils.h b/include/abg-diff-utils.h index 8bc667d0..b59ffa04 100644 --- a/include/abg-diff-utils.h +++ b/include/abg-diff-utils.h @@ -1122,7 +1122,7 @@ is_match_point(RandomAccessOutputIterator a_begin, /// section 4b in the paper. As the paper says, "The idea for doing /// so is to simultaneously run the basic algorithm in both the /// forward and reverse directions until furthest reaching forward and -/// reverse paths starting at opposing corners =E2=80=98=E2=80=98overlap= =E2=80=99=E2=80=99." +/// reverse paths starting at opposing corners 'overlap'." /// /// @tparm RandomAccessOutputIterator the type of iterators passed to /// this function. It must be a random access output iterator kind. diff --git a/src/abg-elf-helpers.cc b/src/abg-elf-helpers.cc index 02ecbcf2..ed768d22 100644 --- a/src/abg-elf-helpers.cc +++ b/src/abg-elf-helpers.cc @@ -895,7 +895,7 @@ is_linux_kernel(Elf *elf_handle) || is_linux_kernel_module(elf_handle)); } =20 -/// Get the address at which a given binary is loaded in memory=E2=8B=85 +/// Get the address at which a given binary is loaded in memory. /// /// @param elf_handle the elf handle for the binary to consider. /// diff --git a/src/abg-ini.cc b/src/abg-ini.cc index 1e5c11f3..5dc438b4 100644 --- a/src/abg-ini.cc +++ b/src/abg-ini.cc @@ -267,14 +267,14 @@ struct property_value::priv =20 /// Default constructor for the @ref property_value type. /// -/// @param kind the of @=C3=AAef property_value that is being constructed. +/// @param kind the of @ref property_value that is being constructed. property_value::property_value() : priv_(new priv(ABSTRACT_PROPERTY_VALUE)) {} =20 /// Constructor for the @ref property_value type. /// -/// @param kind the of @=C3=AAef property_value that is being constructed. +/// @param kind the of @ref property_value that is being constructed. property_value::property_value(value_kind kind) : priv_(new priv(kind)) {} diff --git a/src/abg-ir.cc b/src/abg-ir.cc index 5cc39f59..5e2506a2 100644 --- a/src/abg-ir.cc +++ b/src/abg-ir.cc @@ -12504,9 +12504,9 @@ integral_type::base_type integral_type::get_base_type() const {return base_;} =20 -/// Getter of the modifiers bitmap of the @=C3=AAef integral_type. +/// Getter of the modifiers bitmap of the @ref integral_type. /// -/// @return the modifiers bitmap of the @=C3=AAef integral_type. +/// @return the modifiers bitmap of the @ref integral_type. integral_type::modifiers_type integral_type::get_modifiers() const {return modifiers_;} diff --git a/src/abg-tools-utils.cc b/src/abg-tools-utils.cc index 11486a21..dfbec879 100644 --- a/src/abg-tools-utils.cc +++ b/src/abg-tools-utils.cc @@ -869,7 +869,7 @@ string_is_ascii(const string& str) /// /// "if the hexadecimal value for a universal-character-name [...] or /// string literal corresponds to a control character (in either of -/// the ranges 0x00=E2=80=930x1F or 0x7F=E2=80=930x9F, both inclusive) [.= ..] the +/// the ranges 0x00-0x1F or 0x7F-0x9F, both inclusive) [...] the /// program is ill-formed." /// /// @param str the string to consider. --=20 2.27.0.290.gba653c62da-goog