about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_mount8
2 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 86a383796..96ae6a123 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-05  Clint Adams  <clint@zsh.org>
+
+	* 15938: Completion/Unix/Command/_mount:
+	complete ext3 mount options.
+
 2001-10-02  Clint Adams  <clint@zsh.org>
 
 	* 15919: Src/linklist.c, Src/Modules/tcp.c, Src/Modules/tcp.h:
diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount
index 5d0b9a0e6..69885d240 100644
--- a/Completion/Unix/Command/_mount
+++ b/Completion/Unix/Command/_mount
@@ -365,6 +365,12 @@ if (( ! $+_fs_any )); then
       'fat[specify fat type]:fat type (bit):(12 16)'
       'quiet[quiet mode]'
     )
+    _fs_ext3=(
+      "$_fs_ext2[@]"
+      'journal[update fs journal]:update or inode number:(update)'
+      'noload[do not load journal]'
+      'data[specify mode for data]:journalling mode:(journal ordered writeback)'
+    )
     _fs_msdos=( "$_fs_fat[@]" )
     _fs_umsdos=( "$_fs_fat[@]" )
     _fs_vfat=( "$_fs_fat[@]"
@@ -523,7 +529,7 @@ if [[ "$service" = mount ]]; then
     )
     fss=( minix ext ext2 xiafs hpfs msdos umsdos vfat proc nfs iso9660
           smbfs ncpfs affs ufs romfs sysv adfs autofs coda devpts efs
-          hfs ntfs qnx4 smbfs udf )
+          hfs ntfs qnx4 smbfs udf ext3 )
     [[ -r /proc/filesystems ]] &&
         fss=( ${$(</proc/filesystems)#nodev} )
     ;;