From 4de04ed53b19723acdc42512fb0b24daf280e1c4 Mon Sep 17 00:00:00 2001 From: wl Date: Thu, 25 Feb 2010 19:34:08 +0000 Subject: Fix angle brackets in grohtml. Reported by Colin Watson . * src/devices/grohtml/post-html.cpp (get_html_entity): Add U+27E8 and U+27E9. --- src/devices/grohtml/post-html.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/devices/grohtml/post-html.cpp b/src/devices/grohtml/post-html.cpp index 759831a0..a6acc691 100644 --- a/src/devices/grohtml/post-html.cpp +++ b/src/devices/grohtml/post-html.cpp @@ -1,5 +1,6 @@ // -*- C++ -*- -/* Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 +/* Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, + * 2010 * Free Software Foundation, Inc. * * Gaius Mulley (gaius@glam.ac.uk) wrote post-html.cpp @@ -4660,6 +4661,8 @@ static const char *get_html_entity (unsigned int code) case 0x2663: return "♣"; case 0x2665: return "♥"; case 0x2666: return "♦"; + case 0x27E8: return "⟨"; + case 0x27E9: return "⟩"; default: return to_unicode(code); } } -- cgit v1.2.1