diff options
| author | Michael Albinus | 2010-11-23 20:52:25 +0100 |
|---|---|---|
| committer | Michael Albinus | 2010-11-23 20:52:25 +0100 |
| commit | e40fc7451704a1d868f9ce5282d759dffc9d9126 (patch) | |
| tree | 239bfe602ad1cc8b0961ba141411981b26ec83ce | |
| parent | 4d47208a22c200215abd719adbd830799ff42397 (diff) | |
| download | emacs-e40fc7451704a1d868f9ce5282d759dffc9d9126.tar.gz emacs-e40fc7451704a1d868f9ce5282d759dffc9d9126.zip | |
* net/tramp.el (tramp-default-method-alist)
(tramp-default-user-alist, tramp-default-proxies-alist): Adapt
custom options type. (Bug#7445)
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/net/tramp.el | 14 |
2 files changed, 13 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index add4b50bfbd..cc15db8feac 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2010-11-23 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp.el (tramp-default-method-alist) | ||
| 4 | (tramp-default-user-alist, tramp-default-proxies-alist): Adapt | ||
| 5 | custom options type. (Bug#7445) | ||
| 6 | |||
| 1 | 2010-11-21 Chong Yidong <cyd@stupidchicken.com> | 7 | 2010-11-21 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 8 | ||
| 3 | * progmodes/python.el: Add Ipython support (Bug#5390). | 9 | * progmodes/python.el: Add Ipython support (Bug#5390). |
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index e0f25ffd1f3..a9733fc6a0f 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -814,9 +814,9 @@ empty string for the user name. | |||
| 814 | 814 | ||
| 815 | See `tramp-methods' for a list of possibilities for METHOD." | 815 | See `tramp-methods' for a list of possibilities for METHOD." |
| 816 | :group 'tramp | 816 | :group 'tramp |
| 817 | :type '(repeat (list (regexp :tag "Host regexp") | 817 | :type '(repeat (list (choice :tag "Host regexp" regexp sexp) |
| 818 | (regexp :tag "User regexp") | 818 | (choice :tag "User regexp" regexp sexp) |
| 819 | (string :tag "Method")))) | 819 | (choice :tag "Method name" string (const nil))))) |
| 820 | 820 | ||
| 821 | (defcustom tramp-default-user | 821 | (defcustom tramp-default-user |
| 822 | nil | 822 | nil |
| @@ -842,9 +842,9 @@ matches, the variable `tramp-default-user' takes effect. | |||
| 842 | If the file name does not specify the method, lookup is done using the | 842 | If the file name does not specify the method, lookup is done using the |
| 843 | empty string for the method name." | 843 | empty string for the method name." |
| 844 | :group 'tramp | 844 | :group 'tramp |
| 845 | :type '(repeat (list (regexp :tag "Method regexp") | 845 | :type '(repeat (list (choice :tag "Method regexp" regexp sexp) |
| 846 | (regexp :tag "Host regexp") | 846 | (choice :tag " Host regexp" regexp sexp) |
| 847 | (string :tag "User")))) | 847 | (choice :tag " User name" string (const nil))))) |
| 848 | 848 | ||
| 849 | (defcustom tramp-default-host | 849 | (defcustom tramp-default-host |
| 850 | (system-name) | 850 | (system-name) |
| @@ -870,7 +870,7 @@ interpreted as a regular expression which always matches." | |||
| 870 | :group 'tramp | 870 | :group 'tramp |
| 871 | :type '(repeat (list (choice :tag "Host regexp" regexp sexp) | 871 | :type '(repeat (list (choice :tag "Host regexp" regexp sexp) |
| 872 | (choice :tag "User regexp" regexp sexp) | 872 | (choice :tag "User regexp" regexp sexp) |
| 873 | (choice :tag "Proxy remote name" string (const nil))))) | 873 | (choice :tag " Proxy name" string (const nil))))) |
| 874 | 874 | ||
| 875 | (defconst tramp-local-host-regexp | 875 | (defconst tramp-local-host-regexp |
| 876 | (concat | 876 | (concat |