]> git.cameronkatri.com Git - mandoc.git/blobdiff - mandoc.c
The "value" argument to the roff(7) .nr requests ends right before
[mandoc.git] / mandoc.c
index 963b5b49d3568c9114ef2809b9289e83c3ce9c64..2936ef936093fa2dff1d5dafd254db7c2d4aea31 100644 (file)
--- a/mandoc.c
+++ b/mandoc.c
@@ -1,4 +1,4 @@
-/*     $Id: mandoc.c,v 1.69 2013/10/05 20:30:05 schwarze Exp $ */
+/*     $Id: mandoc.c,v 1.70 2013/11/10 21:34:04 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -93,8 +93,11 @@ mandoc_escape(const char const **end, const char const **start, int *sz)
        case ('C'):
                if ('\'' != **start)
                        return(ESCAPE_ERROR);
-               gly = ESCAPE_SPECIAL;
                *start = ++*end;
+               if ('u' == (*start)[0] && '\'' != (*start)[1])
+                       gly = ESCAPE_UNICODE;
+               else
+                       gly = ESCAPE_SPECIAL;
                term = '\'';
                break;