* problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ?
@ 2012-07-05 13:05 Paul K
2012-07-05 14:00 ` Tassilo Horn
2012-07-05 14:00 ` Peter Dyballa
0 siblings, 2 replies; 5+ messages in thread
From: Paul K @ 2012-07-05 13:05 UTC (permalink / raw)
To: help-gnu-emacs
Hallo People.
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?
best regards,
Pauls
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ?
2012-07-05 13:05 problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ? Paul K
@ 2012-07-05 14:00 ` Tassilo Horn
2012-07-05 19:53 ` Michael Albinus
2012-07-05 14:00 ` Peter Dyballa
1 sibling, 1 reply; 5+ messages in thread
From: Tassilo Horn @ 2012-07-05 14:00 UTC (permalink / raw)
To: help-gnu-emacs
Paul K <mafeuser@gmail.com> 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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ?
2012-07-05 14:00 ` Tassilo Horn
@ 2012-07-05 19:53 ` Michael Albinus
2012-07-10 7:37 ` Paul K
0 siblings, 1 reply; 5+ messages in thread
From: Michael Albinus @ 2012-07-05 19:53 UTC (permalink / raw)
To: Tassilo Horn; +Cc: help-gnu-emacs
Tassilo Horn <tassilo@member.fsf.org> writes:
> Paul K <mafeuser@gmail.com> 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'.
In Tramp 2.1 (integrated into Emacs 23), tramp-cmds.el is required in
tramp.el. This has changed in Tramp 2.2, we use autoloads now.
Tassilo's recommendation to apply (require 'tramp-cmds), after you have
loaded tramp.el, shall work for both Emacs 23 and 24.
> Bye,
> Tassilo
Best regards, Michael.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ?
2012-07-05 19:53 ` Michael Albinus
@ 2012-07-10 7:37 ` Paul K
0 siblings, 0 replies; 5+ messages in thread
From: Paul K @ 2012-07-10 7:37 UTC (permalink / raw)
To: Michael Albinus; +Cc: Tassilo Horn, help-gnu-emacs
I did the job.
thank You guys for the help
best regards,
Paul
On Thu, Jul 5, 2012 at 9:53 PM, Michael Albinus <michael.albinus@gmx.de> wrote:
> Tassilo Horn <tassilo@member.fsf.org> writes:
>
>> Paul K <mafeuser@gmail.com> 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'.
>
> In Tramp 2.1 (integrated into Emacs 23), tramp-cmds.el is required in
> tramp.el. This has changed in Tramp 2.2, we use autoloads now.
>
> Tassilo's recommendation to apply (require 'tramp-cmds), after you have
> loaded tramp.el, shall work for both Emacs 23 and 24.
>
>> Bye,
>> Tassilo
>
> Best regards, Michael.
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ?
2012-07-05 13:05 problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ? Paul K
2012-07-05 14:00 ` Tassilo Horn
@ 2012-07-05 14:00 ` Peter Dyballa
1 sibling, 0 replies; 5+ messages in thread
From: Peter Dyballa @ 2012-07-05 14:00 UTC (permalink / raw)
To: Paul K; +Cc: help-gnu-emacs
Am 05.07.2012 um 15:05 schrieb Paul K:
> is it a bug?
I don't think so, I rather think that TRAMP is not running and so the function is not available.
--
Greetings
Pete
Chicago, n.:
Where the dead still vote … early and often!
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-07-10 7:37 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-05 13:05 problem: `tramp-list-tramp-buffers` missing emacs 24.1.50.1 ? Paul K
2012-07-05 14:00 ` Tassilo Horn
2012-07-05 19:53 ` Michael Albinus
2012-07-10 7:37 ` Paul K
2012-07-05 14:00 ` Peter Dyballa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).