]> git.eshelyaron.com Git - emacs.git/commitdiff
(after-find-file): Simplify msg if nonexistent directory.
authorRichard M. Stallman <rms@gnu.org>
Tue, 3 Jun 2003 11:08:25 +0000 (11:08 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 3 Jun 2003 11:08:25 +0000 (11:08 +0000)
(make-directory): Doc fix.

lisp/files.el

index 7ce59dd603525105ca55ad1a52d33856b5c71198..874935c6347563aac876c901e4522f3bde388e41 100644 (file)
@@ -1524,9 +1524,7 @@ unless NOMODES is non-nil."
              (setq buffer-read-only nil))
             (t
              (setq buffer-read-only nil)
-             (if (file-exists-p (file-name-directory (directory-file-name (file-name-directory buffer-file-name))))
-                 "Use M-x make-directory RET RET to create the directory"
-               "Use C-u M-x make-directory RET RET to create directory and its parents")))))
+             "Use M-x make-directory RET RET to create the directory and its parents"))))
       (when msg
        (message "%s" msg)
        (or not-serious (sit-for 1 nil t))))
@@ -3401,7 +3399,8 @@ is the current default directory for file names.
 That is useful when you have visited a file in a nonexistent directory.
 
 Noninteractively, the second (optional) argument PARENTS says whether
-to create parent directories if they don't exist."
+to create parent directories if they don't exist.  Interactively,
+this happens by default."
   (interactive
    (list (read-file-name "Make directory: " default-directory default-directory
                         nil nil)