aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1996-01-04 23:34:55 +0000
committerKarl Heuer1996-01-04 23:34:55 +0000
commit0225ae5eef361239e4cc5c06e2852ea8b1127a22 (patch)
treef96858fad1f619cd4871574cbcaa948b0415388d
parent757bd20c31c3becdc2872c45e3632af603aa6703 (diff)
downloademacs-0225ae5eef361239e4cc5c06e2852ea8b1127a22.tar.gz
emacs-0225ae5eef361239e4cc5c06e2852ea8b1127a22.zip
(make-directory): Doc fix.
-rw-r--r--lisp/files.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 17a3f4c7a61..d4bf199b1ae 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1322,7 +1322,7 @@ in order to initialize other data structure based on them.")
1322 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$" 1322 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$"
1323 (symbol-name var)) 1323 (symbol-name var))
1324 (not (get var 'safe-local-variable)))) 1324 (not (get var 'safe-local-variable))))
1325 ;; Permit evaling a put of a harmless property 1325 ;; Permit evalling a put of a harmless property.
1326 ;; if the args do nothing tricky. 1326 ;; if the args do nothing tricky.
1327 (if (or (and (eq var 'eval) 1327 (if (or (and (eq var 'eval)
1328 (consp val) 1328 (consp val)
@@ -2040,7 +2040,7 @@ or multiple mail buffers, etc."
2040 "Create the directory DIR and any nonexistent parent dirs. 2040 "Create the directory DIR and any nonexistent parent dirs.
2041Interactively, the default choice of directory to create 2041Interactively, the default choice of directory to create
2042is the current default directory for file names. 2042is the current default directory for file names.
2043That is useful when you have visited a file in a nonexistint directory. 2043That is useful when you have visited a file in a nonexistent directory.
2044 2044
2045Noninteractively, the second (optional) argument PARENTS says whether 2045Noninteractively, the second (optional) argument PARENTS says whether
2046to create parent directories if they don't exist." 2046to create parent directories if they don't exist."