help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bug with `apropos-value' in Emacs 29.0?


From: Emanuel Berg
Subject: Re: bug with `apropos-value' in Emacs 29.0?
Date: Sun, 22 May 2022 00:45:47 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

>> and yes, (apropos-value "70") still fails
>
> But now it works with 'emacs -Q'. No idea what's going
> on ...

Found it, this works

  (apropos-value "70")


until I do either

  (require 'tramp-sh)

or, for example

  (find-file "/-:incal@srv.dataswamp.org:public_html/sth/sth.py")

after that it doesn't work.

Here is what I did with Tramp. It isn't a lot. The part with
tramp-sh has been commented out because of the bug.

;;; -*- lexical-binding: t -*-
;;
;; this file:
;;   https://dataswamp.org/~incal/emacs-init/tramp-incal.el

(require 'tramp)

(when nil
  (require 'tramp-sh) ;; (apropos-value "70") bug here
  (setq tramp-histfile-override nil)
)

(add-to-list 'tramp-methods
  '("sunos-ssh"
    (tramp-login-program       "ssh")
    (tramp-login-args        (("-l" "%u")
                              ("-p" "%p")
                              ("%c")
                              ("-e" "none")
                              ("-t" "-t")
                              ("%h")
                              ("\"/bin/sh -i\"") ))
    (tramp-async-args        (("-q")))
    (tramp-remote-shell        "/bin/sh")
    (tramp-remote-shell-login ("-l"))
    (tramp-remote-shell-args  ("-c")) ))

;; SunOS system:
;; (find-file "/sunos-ssh:embe8573@polhem.it.uu.se:public_html/darn.txt")
;;
;; OpenBSD system:
;; (find-file "/-:incal@srv.dataswamp.org:public_html/sth/sth.py")

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]