From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: bug#41888: 27.0.91; fix ACTION argument of display-buffer Date: Sat, 27 Jun 2020 10:41:17 +0300 Message-ID: <83y2o92bxe.fsf@gnu.org> References: <87366vv7yn.fsf@gmail.com> Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="70760"; mail-complaints-to="usenet@ciao.gmane.io" Cc: 41888@debbugs.gnu.org To: emacs18@gmail.com, martin rudalics Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sat Jun 27 09:42:10 2020 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jp5TW-000IJF-Hi for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 27 Jun 2020 09:42:10 +0200 Original-Received: from localhost ([::1]:44304 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jp5TV-0007U5-Fs for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 27 Jun 2020 03:42:09 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:58934) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jp5TO-0007Tc-Lu for bug-gnu-emacs@gnu.org; Sat, 27 Jun 2020 03:42:02 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:60122) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jp5TO-0001eK-D9 for bug-gnu-emacs@gnu.org; Sat, 27 Jun 2020 03:42:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jp5TO-0006KC-BP for bug-gnu-emacs@gnu.org; Sat, 27 Jun 2020 03:42:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 27 Jun 2020 07:42:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41888 X-GNU-PR-Package: emacs Original-Received: via spool by 41888-submit@debbugs.gnu.org id=B41888.159324370224249 (code B ref 41888); Sat, 27 Jun 2020 07:42:02 +0000 Original-Received: (at 41888) by debbugs.gnu.org; 27 Jun 2020 07:41:42 +0000 Original-Received: from localhost ([127.0.0.1]:43430 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jp5T4-0006J3-9N for submit@debbugs.gnu.org; Sat, 27 Jun 2020 03:41:42 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:44520) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jp5T0-0006Io-Mb for 41888@debbugs.gnu.org; Sat, 27 Jun 2020 03:41:41 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:53934) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jp5Su-0001bQ-R1; Sat, 27 Jun 2020 03:41:32 -0400 Original-Received: from [176.228.60.248] (port=3601 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jp5Su-0007G7-1F; Sat, 27 Jun 2020 03:41:32 -0400 In-Reply-To: <87366vv7yn.fsf@gmail.com> (message from Richard Kim on Mon, 15 Jun 2020 23:30:08 -0700) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:182428 Archived-At: > From: Richard Kim > Date: Mon, 15 Jun 2020 23:30:08 -0700 > > gud-common-init function in emacs 27 seems to have a bug in how it calls > display-buffer. The second argument passed is ACTION. According to > docstring of display-buffer, the list of functions need to be a list > within a list. The attached patch adds the missing extra pair of > parenthesis. Martin, any comments or suggestions?