diff options
author | László Németh <laszlo.nemeth@collabora.com> | 2015-09-08 11:23:39 +0200 |
---|---|---|
committer | László Németh <laszlo.nemeth@collabora.com> | 2015-09-11 01:07:03 +0200 |
commit | 240d1f289c5788845cd4336f223f2c4bc8975a99 (patch) | |
tree | 0507a7ea0c1162f4f5ad8e917463c1db4d8cfafe /extras | |
parent | 62f489c88ea0067adb0f6762c6bc331c2c51005d (diff) |
tdf#93957 fix Emoji pattern of horizontal ellipsis
Typing :.: (one ASCII dot between colons) will enter the Unicode
horizontal ellipsis (U+2026: …) instead of the bad :…: (the
requested Unicode character between colons).
Note: the pattern :...: (three ASCII dots between colons) was
originally intended for the horizontal ellipsis, but that
collides with .*... pattern (default in English and in several
other languages, meaning: replace word ending three ASCII dots).
Change-Id: I97632ff81e04ab9e53026da425b82a2541db0eb1
Diffstat (limited to 'extras')
-rw-r--r-- | extras/source/autocorr/emoji/emoji.ulf | 2 | ||||
-rw-r--r-- | extras/source/autocorr/lang/en-US/DocumentList.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/extras/source/autocorr/emoji/emoji.ulf b/extras/source/autocorr/emoji/emoji.ulf index 28a8b1fc80ee..294d0fa8d12e 100644 --- a/extras/source/autocorr/emoji/emoji.ulf +++ b/extras/source/autocorr/emoji/emoji.ulf @@ -281,7 +281,7 @@ en-US = "bullet2" [HORIZONTAL_ELLIPSIS] x-comment = "… (U+02026), see http://wiki.documentfoundation.org/Emoji" -en-US = "…" +en-US = "." [PER_MILLE_SIGN] x-comment = "‰ (U+02030), see http://wiki.documentfoundation.org/Emoji" diff --git a/extras/source/autocorr/lang/en-US/DocumentList.xml b/extras/source/autocorr/lang/en-US/DocumentList.xml index 4d14a6e7c834..da50017efdbb 100644 --- a/extras/source/autocorr/lang/en-US/DocumentList.xml +++ b/extras/source/autocorr/lang/en-US/DocumentList.xml @@ -987,7 +987,7 @@ <block-list:block block-list:abbreviated-name=":':" block-list:name="’"/> <block-list:block block-list:abbreviated-name=":\\:" block-list:name="∖"/> <block-list:block block-list:abbreviated-name=":+-:" block-list:name="±"/> - <block-list:block block-list:abbreviated-name=":…:" block-list:name="…"/> + <block-list:block block-list:abbreviated-name=":.:" block-list:name="…"/> <block-list:block block-list:abbreviated-name=":blond hair:" block-list:name="👱"/> <block-list:block block-list:abbreviated-name=":blossom:" block-list:name="🌼"/> <block-list:block block-list:abbreviated-name=":blush:" block-list:name="😊"/> |