diff options
author | Alan Pearce | 2014-06-30 10:21:28 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-30 10:21:28 +0100 |
commit | d3153b6ab5345002e270bde86857ce17a75c2a93 (patch) | |
tree | da4c2963772b66b5b91beaad6d1bc25c4b2475f3 /tag-zsh | |
parent | cb8f445e6671043318e13243571ae5d3cca94220 (diff) | |
download | nixfiles-d3153b6ab5345002e270bde86857ce17a75c2a93.tar.lz nixfiles-d3153b6ab5345002e270bde86857ce17a75c2a93.tar.zst nixfiles-d3153b6ab5345002e270bde86857ce17a75c2a93.zip |
zsh: Use clearer process substitution syntax
Diffstat (limited to 'tag-zsh')
-rwxr-xr-x | tag-zsh/config/zsh/zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tag-zsh/config/zsh/zshrc b/tag-zsh/config/zsh/zshrc index 4375ceb9..37e20f8e 100755 --- a/tag-zsh/config/zsh/zshrc +++ b/tag-zsh/config/zsh/zshrc @@ -346,7 +346,7 @@ emacs_change_focus () { ec () { local frameNeeded - frameNeeded=`emacsclient -e '(> (if (daemonp) 2 1) (length (visible-frame-list)))'` + frameNeeded=$(emacsclient -e '(> (if (daemonp) 2 1) (length (visible-frame-list)))') if [[ $? -ne 0 ]]; then print "Daemon not running" return 1 |