Changeset 2607


Ignore:
Timestamp:
2001-06-25T16:32:41+12:00 (23 years ago)
Author:
sjboddie
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/receptionist.cpp

    r2606 r2607  
    12191219#endif
    12201220
    1221   // set macron macros if encoding is utf8
     1221  // set macron macros if encoding is utf8 (otherwise they're displayed
     1222  // using a diaeresis)
    12221223  if (args["w"] == "utf-8") {
    1223     disp.setmacro ("Amn", "Global", "Ā");
    1224     disp.setmacro ("amn", "Global", "ā");
    1225     disp.setmacro ("Emn", "Global", "Ē");
    1226     disp.setmacro ("emn", "Global", "ē");
    1227     disp.setmacro ("Imn", "Global", "Ī");
    1228     disp.setmacro ("imn", "Global", "ī");
    1229     disp.setmacro ("Omn", "Global", "Ō");
    1230     disp.setmacro ("omn", "Global", "ō");
    1231     disp.setmacro ("Umn", "Global", "Ū");
    1232     disp.setmacro ("umn", "Global", "ū");
     1224    text_t Amn; Amn.push_back(256); disp.setmacro ("Amn", "Global", Amn);
     1225    text_t amn; amn.push_back(257); disp.setmacro ("amn", "Global", amn);
     1226    text_t Emn; Emn.push_back(274); disp.setmacro ("Emn", "Global", Emn);
     1227    text_t emn; emn.push_back(275); disp.setmacro ("emn", "Global", emn);
     1228    text_t Imn; Imn.push_back(298); disp.setmacro ("Imn", "Global", Imn);
     1229    text_t imn; imn.push_back(299); disp.setmacro ("imn", "Global", imn);
     1230    text_t Omn; Omn.push_back(332); disp.setmacro ("Omn", "Global", Omn);
     1231    text_t omn; omn.push_back(333); disp.setmacro ("omn", "Global", omn);
     1232    text_t Umn; Umn.push_back(362); disp.setmacro ("Umn", "Global", Umn);
     1233    text_t umn; umn.push_back(363); disp.setmacro ("umn", "Global", umn);
    12331234  }
    12341235
Note: See TracChangeset for help on using the changeset viewer.