~ubuntu-branches/ubuntu/trusty/gnurobbo/trusty-proposed

« back to all changes in this revision

Viewing changes to locales.c

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Kitt
  • Date: 2009-10-25 13:08:58 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20091025130858-hhngbr72w60jsen2
Tags: 0.62-1
* New maintainer (Closes: #544913).
* New upstream version.
* Refreshed patches:
  + do-not-dump-vmusage.diff: removed, merged upstream;
  + Makefile.diff: updated.
* Bump Standards-Version to 3.8.3; no change required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
241
241
        FILE *fp;
242
242
        char filename[256], line[1024]; /* 1024 because if fgets returns a partial line then line_count will be incremented again */
243
243
        int count, count2, line_count = 0, tag_found, tag_index, row = 0;
244
 
        #define CONFIG_ITEM_COUNT 105
 
244
        #define CONFIG_ITEM_COUNT 108
245
245
        struct config_item {
246
246
                char name[60];
247
247
                int state;
293
293
        strcpy(config_items[++row].name, "[txt_Joystick_Axes_Dead_Zone]"); config_items[row].destination = txt_Joystick_Axes_Dead_Zone; 
294
294
        strcpy(config_items[++row].name, "[txt_Language]"); config_items[row].destination = txt_Language; 
295
295
        strcpy(config_items[++row].name, "[txt_Translation_by]"); config_items[row].destination = txt_Translation_by; 
 
296
        strcpy(config_items[++row].name, "[txt_Save_rcfile]"); config_items[row].destination = txt_Save_rcfile; 
 
297
        strcpy(config_items[++row].name, "[txt_on_exit]"); config_items[row].destination = txt_on_exit; 
 
298
        strcpy(config_items[++row].name, "[txt_on_change]"); config_items[row].destination = txt_on_change; 
296
299
        strcpy(config_items[++row].name, "[txt_Move_Up]"); config_items[row].destination = txt_Move_Up; 
297
300
        strcpy(config_items[++row].name, "[txt_Move_Down]"); config_items[row].destination = txt_Move_Down; 
298
301
        strcpy(config_items[++row].name, "[txt_Move_Left]"); config_items[row].destination = txt_Move_Left;