Browse Source

Merge pull request #4002 from aliafshar/patch-1

Add missing space causing parse error.
Robby Russell 9 years ago
parent
commit
ab18795f3c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/misc.zsh

+ 1 - 1
lib/misc.zsh

@@ -1,6 +1,6 @@
 ## Load smart urls if available
 for d in $fpath; do
-	if [[ -e "$d/url-quote-magic"]]; then
+	if [[ -e "$d/url-quote-magic" ]]; then
 		autoload -U url-quote-magic
 		zle -N self-insert url-quote-magic
 	fi