texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/makeinfo lang.c,1.2,1.3


From: karl
Subject: texinfo/makeinfo lang.c,1.2,1.3
Date: Thu, 18 Dec 2003 02:41:00 +0100

Update of /cvsroot/texinfo/texinfo/makeinfo
In directory sheep:/tmp/cvs-serv8508/makeinfo

Modified Files:
        lang.c 
Log Message:
add @ordf{} and @ordm{} commands

Index: lang.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/lang.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** lang.c      2003/12/13 10:54:01     1.2
--- lang.c      2003/12/18 01:40:57     1.3
***************
*** 829,836 ****
        else if (strcmp (command, "exclamdown") == 0)
          add_encoded_char ("iexcl", "!");
-       else if (strcmp (command, "pounds") == 0)
-         add_encoded_char ("pound" , "#");
        else if (strcmp (command, "questiondown") == 0)
          add_encoded_char ("iquest", "?");
        else if (strcmp (command, "AE") == 0)
          add_encoded_char ("AElig", command);
--- 829,840 ----
        else if (strcmp (command, "exclamdown") == 0)
          add_encoded_char ("iexcl", "!");
        else if (strcmp (command, "questiondown") == 0)
          add_encoded_char ("iquest", "?");
+       else if (strcmp (command, "pounds") == 0)
+         add_encoded_char ("pound" , "#");
+       else if (strcmp (command, "ordf") == 0)
+         add_encoded_char ("ordf" , "a");
+       else if (strcmp (command, "ordm") == 0)
+         add_encoded_char ("ordm" , "o");
        else if (strcmp (command, "AE") == 0)
          add_encoded_char ("AElig", command);



reply via email to

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