about summary refs log tree commit diff
path: root/Completion/User/_dd
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/User/_dd')
-rw-r--r--Completion/User/_dd6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/User/_dd b/Completion/User/_dd
index fb78f194a..3ae0a8417 100644
--- a/Completion/User/_dd
+++ b/Completion/User/_dd
@@ -2,17 +2,17 @@
 
 local expl
 
-if compset -P 1 'conv\='; then
+if compset -P 1 'conv='; then
   # If there's a comma present, ignore up to the last one.  The
   # test alone will have that effect.
   compset -p '*,'
   _wanted values expl conversion &&
       compadd "$expl[@]" -qS, -q \
               ascii ebcdic ibm block unblock lcase ucase swab noerror sync
-elif compset -P 1 'if\='; then
+elif compset -P 1 'if='; then
   _description files expl 'input file'
   _files "$expl[@]"
-elif compset -P 1 'of\='; then
+elif compset -P 1 'of='; then
   _description files expl 'output file'
   _files "$expl[@]"
 else