From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.bugs Subject: bug#21053: 24.5; emacs "-nw" option crashes in zsh brad@pesquared.com Date: Tue, 14 Jul 2015 12:46:51 +0200 Message-ID: <87k2u3c8ys.fsf@gnu.org> References: <83oajfo9r8.fsf@folsum.i-did-not-set--mail-host-address--so-tickle-me> <87380r2pda.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1436870842 25226 80.91.229.3 (14 Jul 2015 10:47:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 14 Jul 2015 10:47:22 +0000 (UTC) Cc: 21053 <21053@debbugs.gnu.org> To: Brad Johnson Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Tue Jul 14 12:47:11 2015 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZExjz-0003dM-9k for geb-bug-gnu-emacs@m.gmane.org; Tue, 14 Jul 2015 12:47:11 +0200 Original-Received: from localhost ([::1]:58925 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZExjy-0003GI-Ij for geb-bug-gnu-emacs@m.gmane.org; Tue, 14 Jul 2015 06:47:10 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:47815) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZExjv-0003Fr-N1 for bug-gnu-emacs@gnu.org; Tue, 14 Jul 2015 06:47:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZExjq-0004gl-In for bug-gnu-emacs@gnu.org; Tue, 14 Jul 2015 06:47:07 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:47270) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZExjq-0004gP-Ft for bug-gnu-emacs@gnu.org; Tue, 14 Jul 2015 06:47:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1ZExjp-00014z-W0 for bug-gnu-emacs@gnu.org; Tue, 14 Jul 2015 06:47:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Tassilo Horn Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 14 Jul 2015 10:47:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 21053 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 21053-submit@debbugs.gnu.org id=B21053.14368708204142 (code B ref 21053); Tue, 14 Jul 2015 10:47:01 +0000 Original-Received: (at 21053) by debbugs.gnu.org; 14 Jul 2015 10:47:00 +0000 Original-Received: from localhost ([127.0.0.1]:48716 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZExjo-00014h-Gi for submit@debbugs.gnu.org; Tue, 14 Jul 2015 06:47:00 -0400 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]:57528) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZExjl-00014I-LL for 21053@debbugs.gnu.org; Tue, 14 Jul 2015 06:46:58 -0400 Original-Received: from thinkpad-t440p (dhcp179.uni-koblenz.de [141.26.71.179]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by deliver.uni-koblenz.de (Postfix) with ESMTPSA id 3D69A1A8409; Tue, 14 Jul 2015 12:46:51 +0200 (CEST) In-Reply-To: (Brad Johnson's message of "Tue, 14 Jul 2015 04:16:55 -0400") User-Agent: Gnus/5.130014 (Ma Gnus v0.14) Emacs/25.0.50 (gnu/linux) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.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-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:104966 Archived-At: Hi Brad, I just installed oh-my-zsh but can't reproduce a crash with the emacs plugin. What the plugin does is defining an emacs alias which actually calls emacsclient. Concretely, "emacs args" will call emacsclient --alternate-editor "" --create-frame --no-wait args or emacsclient --alternate-editor "" --no-wait args With the plugin enabled, I get the following $ emacs emacsclient: file name or argument required Try `emacsclient --help' for more information $ emacs -nw emacsclient: file name or argument required Try `emacsclient --help' for more information $ emacs file # file is opened in existing X frame $ emacs -nw file # file is opened in existing X frame, the -nw option seems to be # ignored That the -nw flag is ignored and it doesn't work with no file given can be considered bugs of that plugin in their own respect, but at least that doesn't crash emacs. But I'm using a current emacs git checkout rather than 24.5, so could you please test if the two emacsclient commands above crash your emacs version? Bye, Tassilo