diff --git a/src/calibre/ebooks/html.py b/src/calibre/ebooks/html.py
index 6d479ebaef..3365df576e 100644
--- a/src/calibre/ebooks/html.py
+++ b/src/calibre/ebooks/html.py
@@ -392,6 +392,7 @@ class PreProcessor(object):
opts = getattr(self, 'opts', False)
if opts and hasattr(opts, 'profile') and getattr(opts.profile, 'remove_special_chars', False):
html = opts.profile.remove_special_chars.sub('', html)
+ html = html.replace(u'\u2011', '-')
if self.is_baen(html):
rules = []
elif self.is_book_designer(html):
diff --git a/src/calibre/manual/faq.rst b/src/calibre/manual/faq.rst
index 1407adad58..0c02ef2925 100644
--- a/src/calibre/manual/faq.rst
+++ b/src/calibre/manual/faq.rst
@@ -218,6 +218,10 @@ If it still wont launch, start a command prompt (press the windows key and R; th
Post any output you see in a help message on the `Forum `_.
+My antivirus programs claims |app| is a virus/trojan?
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Your antivirus program is wrong. |app| is a completely open source product. You can actually browse the source code yourself (or hire someone to do it for you) to verify that it is not a virus. Please report the false identification to whatever company you buy your antivirus software from.
+
I want some feature added to |app|. What can I do?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~