/itexToMML

To download this project, use:
bzr branch http://golem.ph.utexas.edu/~distler/code/itexToMML/

« back to all changes in this revision

Viewing changes to itex-src/itex2MML.l

  • Committer: Jacques Distler
  • Date: 2007-09-20 21:06:08 UTC
  • Revision ID: distler@golem.ph.utexas.edu-20070920210608-ew5d1287oc9673gy
Fix Typo
From Jason Blevins: fix \leftleftarrows .

Show diffs side-by-side

added added

removed removed

1
 
/*             itex2MML 1.2.4
2
 
 *   itex2MML.l last modified 6/20/2007
 
1
/*             itex2MML 1.2.5
 
2
 *   itex2MML.l last modified 9/20/2007
3
3
 */
4
4
 
5
5
%{
331
331
"\\curvearrowleft"       {yylval=itex2MML_copy_string("⤺"); return MOL;}
332
332
"\\curvearrowbotright"   {yylval=itex2MML_copy_string("⤻"); return MOL;}
333
333
"\\downdownarrows"       {yylval=itex2MML_copy_string("⇊"); return MOL;}
334
 
"\\leftleftarrows"       {yylval=itex2MML_copy_string("&leftleftarrow;"); return MOL;}
 
334
"\\leftleftarrows"       {yylval=itex2MML_copy_string("⇇"); return MOL;}
335
335
"\\leftrightarrows"      {yylval=itex2MML_copy_string("⇆"); return MOL;}
336
336
"\\righttoleftarrow"     {yylval=itex2MML_copy_string("⟲"); return MOL;}
337
337
"\\lefttorightarrow"     {yylval=itex2MML_copy_string("⟳"); return MOL;}