about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-11-29 02:26:42 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-11-29 02:26:42 +0000
commitf2f4725b8ea9ca3e0e6639a0e84c48fcb5628e29 (patch)
treedf2abb161b3d725a6bada223124f76a52253064f
parent667e104ab242932366a5e1e39ed8a40925e9c003 (diff)
downloadzsh-f2f4725b8ea9ca3e0e6639a0e84c48fcb5628e29.tar.gz
zsh-f2f4725b8ea9ca3e0e6639a0e84c48fcb5628e29.tar.xz
zsh-f2f4725b8ea9ca3e0e6639a0e84c48fcb5628e29.zip
Merge of 24126: additional options by Mustafa Oezkan.
-rw-r--r--Completion/Unix/Command/_mount2
1 files changed, 2 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount
index 72bdf0e93..6333c3d5b 100644
--- a/Completion/Unix/Command/_mount
+++ b/Completion/Unix/Command/_mount
@@ -305,11 +305,13 @@ if (( ! $+_fs_any )); then
     _fs_any=(
       '(sync)async[do all I/O asynchronously]'
       '(noatime)atime[update access time]'
+      '(norelatime)relatime[update atime relative to mtime/ctime]' 
       '(rw suid dev exec async)defaults[use default options]'
       '(nodev)dev[interpret devices]'
       '(noexec)exec[permit execution of binaries]'
       '(nomand)mand[allow mandatory locks]'
       "(atime)noatime[don't update access time]"
+      "(relatime)norelatime[update access time without regard to mtime/ctime]"
       "(dev)nodev[don't interpret devices]"
       "(exec)noexec[don't allow execution of binaries]"
       "(mand)nomand[don'tallow mandatory locks]"