`string-as-unibyte'. The function does not exist on XEmacs, and
likely we need another approach.
* net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
`tramp-gw-*' variables are bound.
+2013-01-31 Michael Albinus <michael.albinus@gmx.de>
+
+ * net/tramp.el (tramp-tramp-file-p): Comment check for
+ `string-as-unibyte'. The function does not exist on XEmacs, and
+ likely we need another approach.
+
+ * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
+ `tramp-gw-*' variables are bound.
+
2013-01-31 Glenn Morris <rgm@gnu.org>
* files.el (basic-save-buffer-2): Choose coding system for
(setq choices tramp-default-proxies-alist)))))
;; Handle gateways.
- (when (and tramp-gw-tunnel-method tramp-gw-socks-method
+ (when (and (boundp 'tramp-gw-tunnel-method) (boundp 'tramp-gw-socks-method)
(string-match
(format
"^\\(%s\\|%s\\)$" tramp-gw-tunnel-method tramp-gw-socks-method)
It checks also, whether NAME is unibyte encoded."
(save-match-data
(and (stringp name)
- (string-equal name (string-as-unibyte name))
+; (string-equal name (string-as-unibyte name))
(string-match tramp-file-name-regexp name))))
(defun tramp-find-method (method user host)