From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56703) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dnuBX-0002mn-1b for guix-patches@gnu.org; Fri, 01 Sep 2017 18:13:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dnuBS-0007Cx-45 for guix-patches@gnu.org; Fri, 01 Sep 2017 18:13:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60248) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dnuBS-0007CY-0p for guix-patches@gnu.org; Fri, 01 Sep 2017 18:13:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dnuBR-0001z4-LM for guix-patches@gnu.org; Fri, 01 Sep 2017 18:13:01 -0400 Subject: [bug#28292] Add emacs-game-2048. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) In-Reply-To: <20170830094403.oosun2rv5yf5tj6t@abyayala> (ng0@infotropique.org's message of "Wed, 30 Aug 2017 09:44:03 +0000") Date: Fri, 01 Sep 2017 10:34:22 +0200 References: <20170830094403.oosun2rv5yf5tj6t@abyayala> Message-ID: <87efrqyso3.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28292-done@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Disposition: inline Applied with the changes below, thanks! Ludo'. PS: We discussed it a couple of times before: please configure your email client to not add Mail-followup-to: guix-patches. That leads people to reply to guix-patches instead of NNN@debbugs.gnu.org, which is annoying. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index aae39c79f..985226571 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2618,14 +2618,11 @@ dark background.") "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd")))) (build-system emacs-build-system) (home-page "https://bitbucket.org/zck/2048.el") - (synopsis "Implementation of the game 2048 in elisp") + (synopsis "Implementation of the game 2048 in Emacs Lisp") (description "This program is an implementation of 2048 for Emacs. - -The goal of this game is to create a tile with value 2048. - -The size of the board and goal value can be customized -- see the -variables *2048-columns*, *2048-rows*, and *2048-victory-value*.") +The goal of this game is to create a tile with value 2048. The size of the +board and goal value can be customized.") (license license:gpl3+))) (define-public emacs-smartparens --=-=-=--