home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gettext-0.10.24-src.tgz / tar.out / fsf / gettext / src / po-gram.y < prev    next >
Text File  |  1996-09-28  |  2KB  |  127 lines

  1. /* GNU gettext - internationalization aids
  2.    Copyright (C) 1995, 1996 Free Software Foundation, Inc.
  3.  
  4.    This file was written by Peter Miller <pmiller@agso.gov.au>
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  19.  
  20. %{
  21. #ifdef HAVE_CONFIG_H
  22. # include "config.h"
  23. #endif
  24.  
  25. #include <stdio.h>
  26.  
  27. #include "po-lex.h"
  28. #include "po-gram.h"
  29. #include "error.h"
  30. #include "system.h"
  31. #include <libintl.h>
  32. #include "po.h"
  33.  
  34. #define _(str) gettext (str)
  35. %}
  36.  
  37. %token    COMMENT
  38. %token    DOMAIN
  39. %token    JUNK
  40. %token    MSGID
  41. %token    MSGSTR
  42. %token    NAME
  43. %token    NUMBER
  44. %token    STRING
  45.  
  46. %union
  47. {
  48.   char *string;
  49.   long number;
  50.   lex_pos_ty pos;
  51. }
  52.  
  53. %type <string> STRING COMMENT string_list
  54. %type <number> NUMBER
  55. %type <pos> msgid msgstr
  56.  
  57. %right MSGSTR
  58.  
  59. %%
  60.  
  61. msgfmt
  62.     : /* empty */
  63.     | msgfmt comment
  64.     | msgfmt domain
  65.     | msgfmt message
  66.     | msgfmt error
  67.     ;
  68.  
  69. domain
  70.     : DOMAIN STRING
  71.         {
  72.            po_callback_domain ($2);
  73.         }
  74.     ;
  75.  
  76. message
  77.     : msgid string_list msgstr string_list
  78.         {
  79.           po_callback_message ($2, &$1, $4, &$3);
  80.         }
  81.     | msgid string_list
  82.         {
  83.           gram_error_at_line (&$1, _("missing `msgstr' section"));
  84.           free ($2);
  85.         }
  86.     ;
  87.  
  88. msgid
  89.     : MSGID
  90.         {
  91.           $$ = gram_pos;
  92.         }
  93.     ;
  94.  
  95. msgstr
  96.     : MSGSTR
  97.         {
  98.           $$ = gram_pos;
  99.         }
  100.     ;
  101.  
  102. string_list
  103.     : STRING
  104.         {
  105.           $$ = $1;
  106.         }
  107.     | string_list STRING
  108.         {
  109.           size_t len1;
  110.           size_t len2;
  111.  
  112.           len1 = strlen ($1);
  113.           len2 = strlen ($2);
  114.           $$ = (char *) xmalloc (len1 + len2 + 1);
  115.           stpcpy (stpcpy ($$, $1), $2);
  116.           free ($1);
  117.           free ($2);
  118.         }
  119.     ;
  120.  
  121. comment
  122.     : COMMENT
  123.         {
  124.           po_callback_comment ($1);
  125.         }
  126.     ;
  127.