From 31c691c1a1085aebdbb129151690e1229a61d77c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 5 Aug 1997 05:49:10 +0000 Subject: [PATCH] (cd-absolute): Add missing arg to `error'. --- lisp/files.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/files.el b/lisp/files.el index a43477a1c8b..603195beb7c 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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)))) -- 2.39.2