zshrc: Amending the previous patches slightly
[grml-etc-core.git] / etc / zsh / zshrc
index b29bc37..577c63f 100644 (file)
@@ -3517,22 +3517,22 @@ regcheck() {
 #f5# List files which have been accessed within the last {\it n} days, {\it n} defaults to 1
 accessed() {
     emulate -L zsh
-    print -l *(a-${1:-1})
+    print -l -- *(a-${1:-1})
 }
 
 #f5# List files which have been changed within the last {\it n} days, {\it n} defaults to 1
 changed() {
     emulate -L zsh
-    print -l *(c-${1:-1})
+    print -l -- *(c-${1:-1})
 }
 
 #f5# List files which have been modified within the last {\it n} days, {\it n} defaults to 1
 modified() {
     emulate -L zsh
-    print -l *(m-${1:-1})
+    print -l -- *(m-${1:-1})
 }
 # modified() was named new() in earlier versions, add an alias for backwards compatibility
-which new >/dev/null || alias new=modified
+check_com new || alias new=modified
 
 #f5# Grep in history
 greph() {