Fix indentation. No functional change.

This commit is contained in:
Daniel Shahaf 2018-10-23 16:34:35 +00:00
parent 6cf522b7b3
commit 0c9252ac69

View File

@ -743,17 +743,17 @@ _zsh_highlight_main_highlighter_highlight_list()
('end') ('end')
_zsh_highlight_main__stack_pop '$' reserved-word _zsh_highlight_main__stack_pop '$' reserved-word
;; ;;
('repeat') ('repeat')
# skip the repeat-count word # skip the repeat-count word
in_redirection=2 in_redirection=2
# The redirection mechanism assumes $this_word describes the word # The redirection mechanism assumes $this_word describes the word
# following the redirection. Make it so. # following the redirection. Make it so.
# #
# That word can be a command word with shortloops (`repeat 2 ls`) # That word can be a command word with shortloops (`repeat 2 ls`)
# or a command separator (`repeat 2; ls` or `repeat 2; do ls; done`). # or a command separator (`repeat 2; ls` or `repeat 2; do ls; done`).
# #
# The repeat-count word will be handled like a redirection target. # The repeat-count word will be handled like a redirection target.
this_word=':start::regular:' this_word=':start::regular:'
esac esac
;; ;;
'suffix alias') style=suffix-alias;; 'suffix alias') style=suffix-alias;;