]> git.eshelyaron.com Git - emacs.git/commitdiff
(cd-absolute): Add missing arg to `error'.
authorRichard M. Stallman <rms@gnu.org>
Tue, 5 Aug 1997 05:49:10 +0000 (05:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 5 Aug 1997 05:49:10 +0000 (05:49 +0000)
lisp/files.el

index a43477a1c8b3d094577051d32e9dcf5ebf9038b7..603195beb7c0ea88cd09a4c3053445a943644370 100644 (file)
@@ -399,7 +399,7 @@ Not actually set up until the first time you you use it.")
   (if (not (file-directory-p dir))
       (if (file-exists-p dir)
          (error "%s is not a directory" dir)
-       (error "%s: no such directory"))
+       (error "%s: no such directory" dir))
     (if (file-executable-p dir)
        (setq default-directory dir)
       (error "Cannot cd to %s:  Permission denied" dir))))