From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49696) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hfREL-0000Fl-09 for guix-patches@gnu.org; Mon, 24 Jun 2019 11:50:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hfREJ-0007An-6S for guix-patches@gnu.org; Mon, 24 Jun 2019 11:50:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44120) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hfREI-00078r-4p for guix-patches@gnu.org; Mon, 24 Jun 2019 11:50:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hfREH-0003P5-LG for guix-patches@gnu.org; Mon, 24 Jun 2019 11:50:02 -0400 Subject: [bug#36230] Fw: [bug#36230] [PATCH] Add emacs-multi-term Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87wohj2b3v.fsf@gnu.org> Date: Mon, 24 Jun 2019 17:49:30 +0200 In-Reply-To: (Baptiste Strazzulla's message of "Sun, 23 Jun 2019 18:35:10 +0000") Message-ID: <8736jz9e5x.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: Baptiste Strazzulla Cc: "36230@debbugs.gnu.org" <36230@debbugs.gnu.org> --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Baptiste Strazzulla skribis: > Second attempt. I hope everything is at it's right place this time. I made the changes below to address issues that =E2=80=98guix lint=E2=80=99= reported. However, we=E2=80=99re out of luck because is now 404. Do you know what the new URL is? Thanks in advance, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ecd9518646..ca3d64bd43 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -16096,19 +16096,19 @@ acting like notes that are made @emph{in} the document.") (base32 "1bn6zx931vz2fa72ab999r33bxv8brn3cqmalvq25x7s4z3q1lyi")))) (build-system emacs-build-system) - (propagated-inputs `(("zsh" ,zsh))) + (inputs `(("zsh" ,zsh))) (home-page "https://github.com/emacsorphanage/multi-term") (synopsis "Manage multiple terminal buffers in Emacs") (description - "This package enhances @{term.el} with the following features: + "This package enhances @code{term.el} with the following features: @enumerate @item Functions to switch between multiple terminal buffers -@item List of keys to be intercepted by @{emacs-multi-term} instead of by the +@item List of keys to be intercepted by @code{emacs-multi-term} instead of by the underlying terminal @item Kills the unused buffer left after exiting the terminal @item Kills the running sub-processes along with the terminal when killing the it forcibly -@item Dedicated window for debugging program +@item Dedicated window for debugging program. @end enumerate") (license license:gpl3+))) --=-=-=--