1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-23 18:47:57 +00:00

* net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.

Otherwise, there could be errors in autoloading.  (Bug#13151)
This commit is contained in:
Michael Albinus 2012-12-13 09:42:25 +01:00
parent d754b364fa
commit 6ce2146306
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-12-13 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
Otherwise, there could be errors in autoloading. (Bug#13151)
2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
* net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"

View File

@ -112,7 +112,7 @@
"Alist of handler functions for Tramp ADB method.")
;;;###tramp-autoload
(defun tramp-adb-file-name-p (filename)
(defsubst tramp-adb-file-name-p (filename)
"Check if it's a filename for ADB."
(let ((v (tramp-dissect-file-name filename)))
(string= (tramp-file-name-method v) tramp-adb-method)))