From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.help Subject: Re: problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ? Date: Thu, 05 Jul 2012 16:00:44 +0200 Message-ID: <87zk7e5mur.fsf@thinkpad.tsdh.de> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1341496901 21283 80.91.229.3 (5 Jul 2012 14:01:41 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 5 Jul 2012 14:01:41 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jul 05 16:01:41 2012 Return-path: Envelope-to: geh-help-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 1Smmck-0000KJ-3X for geh-help-gnu-emacs@m.gmane.org; Thu, 05 Jul 2012 16:01:38 +0200 Original-Received: from localhost ([::1]:45651 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Smmcj-0007Yd-6Y for geh-help-gnu-emacs@m.gmane.org; Thu, 05 Jul 2012 10:01:37 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:57936) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SmmcV-0007Vg-D3 for help-gnu-emacs@gnu.org; Thu, 05 Jul 2012 10:01:32 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SmmcL-0001S8-JK for help-gnu-emacs@gnu.org; Thu, 05 Jul 2012 10:01:22 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:50662) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SmmcL-0001Rd-Cz for help-gnu-emacs@gnu.org; Thu, 05 Jul 2012 10:01:13 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Smmc8-000830-AM for help-gnu-emacs@gnu.org; Thu, 05 Jul 2012 16:01:00 +0200 Original-Received: from tsdh.uni-koblenz.de ([141.26.67.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 05 Jul 2012 16:01:00 +0200 Original-Received: from tassilo by tsdh.uni-koblenz.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 05 Jul 2012 16:01:00 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 26 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: tsdh.uni-koblenz.de User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.1.50 (gnu/linux) Cancel-Lock: sha1:cpeHJh89D+a1c+mQ+b9hsF55mLc= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:85677 Archived-At: Paul K writes: Hi Paul, > I was invoking this function in one one of my emacs 23 defuns. > > Now I get the following: > > Debugger entered--Lisp error: (void-function tramp-list-tramp-buffers) > (tramp-list-tramp-buffers) > eval((tramp-list-tramp-buffers) nil) > eval-last-sexp-1(nil) > eval-last-sexp(nil) > call-interactively(eval-last-sexp nil nil) > > The funny thing is that this method still exists in > /usr/local/share/emacs/24.1.50/lisp/net/tramp-cmds.el.gz. > > is it a bug? I don't think so. Probably, when you call that function tramp isn't loaded already. Place a (require 'tramp-cmds) before the call to `tramp-list-tramp-buffers'. Bye, Tassilo