Kaynağa Gözat

driver: Avoid warn_create_global warnings

pull/599/head
dana 5 yıl önce
işlemeyi yapan: Daniel Shahaf
ebeveyn
işleme
55f846c673
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. +3
    -3
      zsh-syntax-highlighting.zsh

+ 3
- 3
zsh-syntax-highlighting.zsh Dosyayı Görüntüle

@ -28,7 +28,7 @@
# -------------------------------------------------------------------------------------------------
# First of all, ensure predictable parsing.
zsh_highlight__aliases=`builtin alias -Lm '[^+]*'`
typeset zsh_highlight__aliases="$(builtin alias -Lm '[^+]*')"
# In zsh <= 5.2, `alias -L` emits aliases that begin with a plus sign ('alias -- +foo=42')
# them without a '--' guard, so they don't round trip.
#
@ -57,9 +57,9 @@ fi
# zsh-users/zsh@48cadf4 http://www.zsh.org/mla/workers//2017/msg00034.html
autoload -Uz is-at-least
if is-at-least 5.4; then
zsh_highlight__pat_static_bug=false
typeset -g zsh_highlight__pat_static_bug=false
else
zsh_highlight__pat_static_bug=true
typeset -g zsh_highlight__pat_static_bug=true
fi
# Array declaring active highlighters names.

Yükleniyor…
İptal
Kaydet