Variable: connection-local-profile-alist

connection-local-profile-alist is a variable defined in files-x.el.gz.

Value

((tramp-adb-connection-local-default-shell-profile
  (shell-file-name . "/system/bin/sh")
  (shell-command-switch . "-c"))
 (tramp-connection-local-default-shell-profile
  (shell-file-name . "/bin/sh")
  (shell-command-switch . "-c"))
 (tramp-connection-local-default-system-profile
  (path-separator . ":")
  (null-device . "/dev/null")))

Documentation

Alist mapping connection profiles to variable lists.

Each element in this list has the form (PROFILE VARIABLES). PROFILE is the name of a connection profile (a symbol). VARIABLES is a list that declares connection-local variables for PROFILE. An element in VARIABLES is an alist whose elements are of the form (VAR . VALUE).

Source Code

;; Defined in /usr/src/emacs/lisp/files-x.el.gz
(defvar connection-local-profile-alist nil
  "Alist mapping connection profiles to variable lists.
Each element in this list has the form (PROFILE VARIABLES).
PROFILE is the name of a connection profile (a symbol).
VARIABLES is a list that declares connection-local variables for
PROFILE.  An element in VARIABLES is an alist whose elements are
of the form (VAR . VALUE).")