[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: emacs-30 f050b9c5033: Fix Tramp IPv6 handling in tests
From: |
Michael Albinus |
Subject: |
Re: emacs-30 f050b9c5033: Fix Tramp IPv6 handling in tests |
Date: |
Wed, 25 Sep 2024 19:47:31 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Andreas Schwab <schwab@suse.de> writes:
Hi Andreas,
>> diff --git a/lisp/net/tramp-integration.el b/lisp/net/tramp-integration.el
>> index e1f0b2a3495..56deaf9066b 100644
>> --- a/lisp/net/tramp-integration.el
>> +++ b/lisp/net/tramp-integration.el
>> @@ -275,9 +275,14 @@ NAME must be equal to `tramp-current-connection'."
>> ;;; Integration of shortdoc.el:
>>
>> (with-eval-after-load 'shortdoc
>> - (dolist (elem '((file-remote-p
>> + (dolist (elem `((file-remote-p
>> :eval (file-remote-p "/ssh:user@host:/tmp/foo")
>> - :eval (file-remote-p "/ssh:user@host:/tmp/foo" 'method))
>> + :eval (file-remote-p "/ssh:user@host:/tmp/foo" 'method)
>> + :eval (file-remote-p "/ssh:user@[::1]#1234:/tmp/foo" 'host)
>> + ;; We don't want to see the text properties.
>> + :no-eval (file-remote-p "/sudo::/tmp/foo" 'user)
>> + :result ,(substring-no-properties
>> + (file-remote-p "/sudo::/tmp/foo" 'user)))
>
> This throws "Wrong type argument: stringp, nil" when
> (tramp-change-syntax 'simplified).
Thanks, I've fixed this in the emacs-30 branch.
Best regards, Michael.