about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-11-28 17:28:57 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-11-28 17:28:57 +0000
commit4f1af066bdc8c3db3f2bd61a5a445e3b9cb99c98 (patch)
tree3ee5ec3b6ad064b51c8bc965f2b8b5dfdedaff33
parent153f942d3e6b7432eda85fef85164c20556d35a3 (diff)
downloadzsh-4f1af066bdc8c3db3f2bd61a5a445e3b9cb99c98.tar.gz
zsh-4f1af066bdc8c3db3f2bd61a5a445e3b9cb99c98.tar.xz
zsh-4f1af066bdc8c3db3f2bd61a5a445e3b9cb99c98.zip
Mustafa Oezkan: 24126: additional mount completion options
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_mount2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 29f3f0c1e..387291c13 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-28  Peter Stephenson  <pws@csr.com>
+
+	* Mustafa Oezkan: 24126: Completion/Unix/Command/_mount:
+	additional options.
+
 2007-11-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>
 
 	* Ryan F: users/12154: Completion/Unix/Type/_groups: MacOS X
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]"