summaryrefslogtreecommitdiff
path: root/plugins/emoji/update_emoji.pl
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2015-08-30 21:47:42 -0700
committerRobby Russell <robby@planetargon.com>2015-08-30 21:47:42 -0700
commitc10d5c8b7cd1ccb8ea2303cd7b9b48f04251ce66 (patch)
treeba78c544649d987a17edf5cc6938d248ae1d3de3 /plugins/emoji/update_emoji.pl
parent69a17150ad3b594edb0d18c43371a1ca2e85edbe (diff)
parent02383017268004c4873797c16a667389bead1b83 (diff)
downloadzsh-c10d5c8b7cd1ccb8ea2303cd7b9b48f04251ce66.tar.gz
zsh-c10d5c8b7cd1ccb8ea2303cd7b9b48f04251ce66.tar.bz2
zsh-c10d5c8b7cd1ccb8ea2303cd7b9b48f04251ce66.zip
Merge pull request #4244 from Gnouc/master
Emoji plugin - Fix wrong string comparison
Diffstat (limited to 'plugins/emoji/update_emoji.pl')
-rw-r--r--plugins/emoji/update_emoji.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/emoji/update_emoji.pl b/plugins/emoji/update_emoji.pl
index d90c6e316..04f3ce8e7 100644
--- a/plugins/emoji/update_emoji.pl
+++ b/plugins/emoji/update_emoji.pl
@@ -88,7 +88,7 @@ typeset -gAH emoji_mod
}
# Modifiers are included in both the main set and their separate map,
# because they have a standalone representation as a color swatch.
- if ( $modifier_status == "modifier" ) {
+ if ( $modifier_status eq "modifier" ) {
$outfh->print("emoji_mod[$omz_name]=\$'$zsh_code'\n");
}
} else {