]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp.el (tramp-root-regexp): Remove.
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 31 Aug 2011 08:18:20 +0000 (10:18 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 31 Aug 2011 08:18:20 +0000 (10:18 +0200)
(tramp-completion-file-name-regexp-unified)
(tramp-completion-file-name-regexp-separate)
(tramp-completion-file-name-regexp-url): Don't use leading volume
letter on win32 systems.  (Bug#5303, Bug#9311)
(tramp-drop-volume-letter): Simplify definition.  Suggested by
Stefan Monnier <monnier@iro.umontreal.ca>.

lisp/ChangeLog
lisp/net/tramp.el

index 39cc42477e2b1e99f28f2774de1d7b6ec99cc3be..4fa4dfc5700e657c83b2234eae92042afc8db55c 100644 (file)
@@ -1,3 +1,13 @@
+2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-root-regexp): Remove.
+       (tramp-completion-file-name-regexp-unified)
+       (tramp-completion-file-name-regexp-separate)
+       (tramp-completion-file-name-regexp-url): Don't use leading volume
+       letter on win32 systems.  (Bug#5303, Bug#9311)
+       (tramp-drop-volume-letter): Simplify definition.  Suggested by
+       Stefan Monnier <monnier@iro.umontreal.ca>.
+
 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * subr.el (event-modifiers): Fix "missing modifier" part of docstring
index 9b11ef58eab0e883b6004d41b3a0a4fb916a6256..274bc72391b7af40fcbb51b03d164998b60a2e5e 100644 (file)
@@ -860,20 +860,10 @@ updated after changing this variable.
 
 Also see `tramp-file-name-structure'.")
 
-;;;###autoload
-(defconst tramp-root-regexp
-  (if (memq system-type '(cygwin windows-nt))
-      "\\`\\([a-zA-Z]:\\)?/"
-    "\\`/")
-  "Beginning of an incomplete Tramp file name.
-Usually, it is just \"\\\\`/\".  On W32 systems, there might be a
-volume letter, which will be removed by `tramp-drop-volume-letter'.")
-
 ;;;###autoload
 (defconst tramp-completion-file-name-regexp-unified
   (if (memq system-type '(cygwin windows-nt))
-      (concat tramp-root-regexp "[^/]\\{2,\\}\\'")
-    (concat tramp-root-regexp "[^/]*\\'"))
+      "\\`/[^/]\\{2,\\}\\'" "\\`/[^/]*\\'")
   "Value for `tramp-completion-file-name-regexp' for unified remoting.
 GNU Emacs uses a unified filename syntax for Tramp and Ange-FTP.
 See `tramp-file-name-structure' for more explanations.
@@ -882,14 +872,14 @@ On W32 systems, the volume letter must be ignored.")
 
 ;;;###autoload
 (defconst tramp-completion-file-name-regexp-separate
-  (concat tramp-root-regexp "\\([[][^]]*\\)?\\'")
+  "\\`/\\([[][^]]*\\)?\\'"
   "Value for `tramp-completion-file-name-regexp' for separate remoting.
 XEmacs uses a separate filename syntax for Tramp and EFS.
 See `tramp-file-name-structure' for more explanations.")
 
 ;;;###autoload
 (defconst tramp-completion-file-name-regexp-url
-  (concat tramp-root-regexp "[^/:]+\\(:\\(/\\(/[^/]*\\)?\\)?\\)?\\'")
+  "\\`/[^/:]+\\(:\\(/\\(/[^/]*\\)?\\)?\\)?\\'"
   "Value for `tramp-completion-file-name-regexp' for URL-like remoting.
 See `tramp-file-name-structure' for more explanations.")
 
@@ -1494,20 +1484,20 @@ progress reporter."
 (tramp-compat-font-lock-add-keywords
  'emacs-lisp-mode '("\\<tramp-with-progress-reporter\\>"))
 
-(eval-and-compile                      ;; Silence compiler.
+(defalias 'tramp-drop-volume-letter
   (if (memq system-type '(cygwin windows-nt))
-      (defun tramp-drop-volume-letter (name)
+      (lambda (name)
        "Cut off unnecessary drive letter from file NAME.
 The functions `tramp-*-handle-expand-file-name' call `expand-file-name'
 locally on a remote file name.  When the local system is a W32 system
 but the remote system is Unix, this introduces a superfluous drive
 letter into the file name.  This function removes it."
        (save-match-data
-         (if (string-match tramp-root-regexp name)
+         (if (string-match "\\`[a-zA-Z]:/" name)
              (replace-match "/" nil t name)
            name)))
 
-    (defalias 'tramp-drop-volume-letter 'identity)))
+    'identity))
 
 ;;; Config Manipulation Functions: