From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: package.el strings Date: Sun, 17 Jun 2018 17:33:19 +0300 Message-ID: <83fu1ltrdc.fsf@gnu.org> References: <83y3rpeubc.fsf@gnu.org> <07C02D08-66BB-4454-AA25-B512BFC39A2A@gmail.com> <83vamk965y.fsf@gnu.org> <84FCCBF3-F20F-48E2-B05E-F6DB218D8896@gmail.com> <87lgdarcwi.fsf@gmail.com> <87in8eqk93.fsf@gmail.com> <87wowroub1.fsf@gmail.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1529245896 2378 195.159.176.226 (17 Jun 2018 14:31:36 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 17 Jun 2018 14:31:36 +0000 (UTC) Cc: npostavs@gmail.com, emacs-devel@gnu.org To: Jean-Christophe Helary Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jun 17 16:31:32 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUYiJ-0000V6-Ud for ged-emacs-devel@m.gmane.org; Sun, 17 Jun 2018 16:31:32 +0200 Original-Received: from localhost ([::1]:55479 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUYkR-0007vw-8c for ged-emacs-devel@m.gmane.org; Sun, 17 Jun 2018 10:33:43 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:32907) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUYkB-0007uP-1b for emacs-devel@gnu.org; Sun, 17 Jun 2018 10:33:28 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUYk7-0005ZN-3z for emacs-devel@gnu.org; Sun, 17 Jun 2018 10:33:27 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:50019) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUYk6-0005ZG-W1; Sun, 17 Jun 2018 10:33:23 -0400 Original-Received: from [176.228.60.248] (port=2872 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fUYk6-0002bI-9y; Sun, 17 Jun 2018 10:33:22 -0400 In-reply-to: (message from Jean-Christophe Helary on Sun, 17 Jun 2018 23:02:08 +0900) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:226406 Archived-At: > From: Jean-Christophe Helary > Date: Sun, 17 Jun 2018 23:02:08 +0900 > Cc: Emacs developers > > There is indeed another change I want to make but that can wait. It involves removing some of the text decorations to be able to straighten some strings. > > If there is an agreement to proceed I can do that later. In the meanwhile it would be nice if you could first commit the biggest part of the modifications. Thanks, but there are a couple of hunks I don't understand: > (defcustom package-archives `(("gnu" . > - ,(format "http%s://elpa.gnu.org/packages/" > - (if (gnutls-available-p) "s" "")))) > + ,(let ((https "https://elpa.gnu.org/packages/") > + (http "http://elpa.gnu.org/packages/")) > + (if (gnutls-available-p) https http)))) > + Why did you need this change? > - (dir (expand-file-name (format "archives/%s" name) package-user-dir)) > + (dir (expand-file-name (concat "archives/" name) package-user-dir)) Same question here. > - (message "No packages to upgrade.") > + (message "No packages to upgrade") I think our style is not to include a period in messages.