diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-09-12 16:45:56 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-09-12 16:45:56 -0400 |
commit | 64b51947763acc9de425f0f5d2d37e6659b1fda8 (patch) | |
tree | 3bf5947986dfed1c4314dd7c7dd05fcdcb266ad7 /lisp/files.el | |
parent | 162546271fc98c6897130cf43fce8271e5e94b33 (diff) | |
download | emacs-64b51947763acc9de425f0f5d2d37e6659b1fda8.tar.gz |
* dired-aux.el (dired-mark-read-string): Don't use default value on empty input.
(dired-do-chxxx): Treat empty input for "touch" as no -t option.
Omit initial minibuffer contents.
(dired-do-chmod): Signal an error on empty input.
(dired-mark-read-string): Don't return default on empty input.
* files.el (file-modes-symbolic-to-number): Doc fix.
Fixes: debbugs:9361
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index a0f55517546..5ca9af6783d 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -6301,7 +6301,7 @@ as in \"og+rX-w\"." "Convert symbolic file modes to numeric file modes. MODES is the string to convert, it should match \"[ugoa]*([+-=][rwxXstugo]*)+,...\". -See (info \"(coreutils)File permissions\") for more information on this +See Info node `(coreutils)File permissions' for more information on this notation. FROM (or 0 if nil) gives the mode bits on which to base permissions if MODES request to add, remove, or set permissions based on existing ones, |