From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Gemini Lasswell Newsgroups: gmane.emacs.bugs Subject: bug#24738: corrections to steps to repro Date: Wed, 19 Oct 2016 10:30:33 -0700 Message-ID: References: NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1476900048 15413 195.159.176.226 (19 Oct 2016 18:00:48 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Wed, 19 Oct 2016 18:00:48 +0000 (UTC) To: 24738@debbugs.gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Oct 19 20:00:44 2016 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1bwvAE-0001rE-Lk for geb-bug-gnu-emacs@m.gmane.org; Wed, 19 Oct 2016 20:00:30 +0200 Original-Received: from localhost ([::1]:50102 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwvAG-0000sP-Oo for geb-bug-gnu-emacs@m.gmane.org; Wed, 19 Oct 2016 14:00:32 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwuin-0007fL-4a for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2016 13:32:09 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bwuik-00022P-2Z for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2016 13:32:09 -0400 Original-Received: from debbugs.gnu.org ([208.118.235.43]:33797) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1bwuij-00021L-W0 for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2016 13:32:06 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1bwuig-0004IH-Gh for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2016 13:32:02 -0400 X-Loop: help-debbugs@gnu.org In-Reply-To: Resent-From: Gemini Lasswell Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 19 Oct 2016 17:32:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 24738 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 24738-submit@debbugs.gnu.org id=B24738.147689829116469 (code B ref 24738); Wed, 19 Oct 2016 17:32:02 +0000 Original-Received: (at 24738) by debbugs.gnu.org; 19 Oct 2016 17:31:31 +0000 Original-Received: from localhost ([127.0.0.1]:39987 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bwuiB-0004HY-4G for submit@debbugs.gnu.org; Wed, 19 Oct 2016 13:31:31 -0400 Original-Received: from aibo.runbox.com ([91.220.196.211]:37122) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bwui9-0004HP-FK for 24738@debbugs.gnu.org; Wed, 19 Oct 2016 13:31:30 -0400 Original-Received: from [10.9.9.213] (helo=mailfront13.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1bwui8-0004ml-8F for 24738@debbugs.gnu.org; Wed, 19 Oct 2016 19:31:28 +0200 Original-Received: from c-24-22-244-161.hsd1.wa.comcast.net ([24.22.244.161] helo=rainbow.local) by mailfront13.runbox.com with esmtpsa (uid:179284 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1bwuhP-0004Hw-H8 for 24738@debbugs.gnu.org; Wed, 19 Oct 2016 19:30:43 +0200 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 208.118.235.43 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.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.org gmane.emacs.bugs:124683 Archived-At: I left out a couple of steps, so please use this sequence to reproduce the bug: 1. emacs -Q 2. M-: (require 'seq) RET 3. enter the following code into *scratch*: (defun seq-let-bug () (let ((nums [1 2 3 4 5])) (seq-let (a b c) nums (message "a=%s b=%s c=%s" a b c)))) 4. C-u C-M-x 5. M-: (seq-let-bug) RET 6. G After step 5 the debugger prompt will appear, so the G is to make it continue execution without stopping.