]> git.eshelyaron.com Git - emacs.git/commitdiff
(he-concat-directory-file-name): Directory part may be nil.
authorRichard M. Stallman <rms@gnu.org>
Tue, 18 Jun 1996 16:28:22 +0000 (16:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 18 Jun 1996 16:28:22 +0000 (16:28 +0000)
(he-file-name-nondirectory): Referenced external variable.

lisp/hippie-exp.el

index bb59ac683827b3c82d8407277707288491f7c65a..ddb896befdb8d3842510e902c141cdadcebab939 100644 (file)
@@ -483,11 +483,12 @@ otherwise."
   (if (memq system-type '(vax-vms axp-vms))
       (or (file-directory-p file)
          (file-directory-p (concat file "[000000]")))
-    (file-directory-p dir-part)))
+    (file-directory-p file)))
   
 (defun he-concat-directory-file-name (dir-part name-part)
   "Try to slam together two parts of a file specification, system dependently."
-  (cond ((memq system-type '(axp-vms vax-vms))
+  (cond ((null dir-part) name-part)
+       ((memq system-type '(axp-vms vax-vms))
         (if (and (string= (substring dir-part -1) "]")
                  (string= (substring name-part 0 2) "[."))
             (concat (substring dir-part 0 -1) (substring name-part 1))