groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Groff-commit] groff ChangeLog src/devices/grohtml/post-html.cpp


From: Werner LEMBERG
Subject: [Groff-commit] groff ChangeLog src/devices/grohtml/post-html.cpp
Date: Thu, 25 Feb 2010 19:34:08 +0000

CVSROOT:        /cvsroot/groff
Module name:    groff
Changes by:     Werner LEMBERG <wl>     10/02/25 19:34:08

Modified files:
        .              : ChangeLog 
        src/devices/grohtml: post-html.cpp 

Log message:
        Fix angle brackets in grohtml.
        Reported by Colin Watson <address@hidden>.
        
        * src/devices/grohtml/post-html.cpp (get_html_entity): Add U+27E8
        and U+27E9.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/groff/ChangeLog?cvsroot=groff&r1=1.1225&r2=1.1226
http://cvs.savannah.gnu.org/viewcvs/groff/src/devices/grohtml/post-html.cpp?cvsroot=groff&r1=1.44&r2=1.45

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/groff/groff/ChangeLog,v
retrieving revision 1.1225
retrieving revision 1.1226
diff -u -b -r1.1225 -r1.1226
--- ChangeLog   24 Feb 2010 08:24:47 -0000      1.1225
+++ ChangeLog   25 Feb 2010 19:34:08 -0000      1.1226
@@ -1,3 +1,11 @@
+2010-02-25  Werner LEMBERG  <address@hidden>
+
+       Fix angle brackets in grohtml.
+       Reported by Colin Watson <address@hidden>.
+
+       * src/devices/grohtml/post-html.cpp (get_html_entity): Add U+27E8
+       and U+27E9.
+
 2010-02-24  Colin Watson  <address@hidden>
 
        Add new FreeBSD and Posix versions.

Index: src/devices/grohtml/post-html.cpp
===================================================================
RCS file: /cvsroot/groff/groff/src/devices/grohtml/post-html.cpp,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- src/devices/grohtml/post-html.cpp   20 Nov 2009 05:10:18 -0000      1.44
+++ src/devices/grohtml/post-html.cpp   25 Feb 2010 19:34:08 -0000      1.45
@@ -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 (address@hidden) wrote post-html.cpp
@@ -4660,6 +4661,8 @@
       case 0x2663: return "&clubs;";
       case 0x2665: return "&hearts;";
       case 0x2666: return "&diams;";
+      case 0x27E8: return "&lang;";
+      case 0x27E9: return "&rang;";
       default: return to_unicode(code);
     }
   }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]