summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--Completion/Core/.distfiles4
-rw-r--r--Config/version.mk4
-rw-r--r--Functions/Misc/zmv1
-rw-r--r--Functions/Zle/.distfiles2
5 files changed, 14 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 11b94801f..6412fa996 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2000-10-17 Peter Stephenson <pws@csr.com>
+
+ * Config/version.mk, Functions/Zle/.distfiles,
+ Completion/Core/.distfiles: 3.1.6-dev-7
+
+ * Functions/Misc/zmv: in verbose mode, report if something was
+ skipped because it didn't change.
+
2000-10-16 Sven Wischnowsky <wischnow@zsh.org>
* ?????: Test/54compmatch.ztst: add tests for the stuff in 12995
diff --git a/Completion/Core/.distfiles b/Completion/Core/.distfiles
index d80466656..d56385133 100644
--- a/Completion/Core/.distfiles
+++ b/Completion/Core/.distfiles
@@ -1,11 +1,11 @@
DISTFILES_SRC='
.distfiles
- _all_labels _alternative _approximate
+ _all_labels _all_matches _alternative _approximate
_call _compalso _complete _correct _description _expand
_file_descriptors _files _funcall _history _ignored _list _main_complete
_match _menu _multi_parts _message _next_label _normal _oldlist _options
_parameters _path_files _prefix _requested _sep_parts
- _set_options _setup _sort_tags _tags
+ _set_options _setup _tags
_unset_options _wanted
compaudit compdump compinit compinstall
'
diff --git a/Config/version.mk b/Config/version.mk
index 52e1ae68c..3a95f367e 100644
--- a/Config/version.mk
+++ b/Config/version.mk
@@ -27,5 +27,5 @@
# This must also serve as a shell script, so do not add spaces around the
# `=' signs.
-VERSION=3.1.9-dev-6
-VERSION_DATE='September 4, 2000'
+VERSION=3.1.9-dev-7
+VERSION_DATE='October 17, 2000'
diff --git a/Functions/Misc/zmv b/Functions/Misc/zmv
index 44a8a1b0c..8dbed7dd9 100644
--- a/Functions/Misc/zmv
+++ b/Functions/Misc/zmv
@@ -235,6 +235,7 @@ for f in $files; do
elif [[ $f = $g ]]; then
# don't cause error: more useful just to skip
# errs=($errs "$f not altered by substitution")
+ [[ -n $opt_v ]] && print "$f not altered, ignored"
continue
elif [[ -n $from[$g] && ! -d $g ]]; then
errs=($errs "$f and $from[$g] both map to $g")
diff --git a/Functions/Zle/.distfiles b/Functions/Zle/.distfiles
index 8e9e1acee..73e0db0a0 100644
--- a/Functions/Zle/.distfiles
+++ b/Functions/Zle/.distfiles
@@ -1,4 +1,4 @@
DISTFILES_SRC='
.distfiles history-search-end edit-command-line incremental-complete-word
- incarg insert-files predict-on
+ incarg insert-files predict-on smart-insert-last-word
'