~ubuntu-branches/ubuntu/trusty/lifelines/trusty

« back to all changes in this revision

Viewing changes to src/gedlib/editvtab.c

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Augusto van de Wiel (faw)
  • Date: 2007-08-14 00:02:04 UTC
  • mfrom: (1.1.4 upstream) (3.1.4 gutsy)
  • Revision ID: james.westby@ubuntu.com-20070814000204-mpv5faygl0dgq3qi
Tags: 3.0.61-1
* New upstream release. (Closes: #387856).
* Fixing documentation build problems also fixes FTBFS if built twice in a
  row. (Closes: #424543).
* Adding lynx as a build dependency. This is necessary to generate txt files
  from html, discovered while fixing #424543.
* Upstream fix: charset for gedcom file in unicode. (Closes: #396206).
* Upstream fim: updating documentation about desc-tex2. (Closes: #405501).
* Bumping Standards-Version to 3.7.2 without package changes.
* Dropping local debian patches added upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
        STRING msg;
100
100
        static char fullerr[78]; /* TODO -- fix static usage */
101
101
        STRING ptr;
102
 
        XLAT ttmi = transl_get_predefined_xlat(MEDIN);
 
102
        XLAT ttmi = transl_get_predefined_xlat(MEDIN); /* editor to internal */
103
103
 
104
104
        do_edit();
105
105
        while (TRUE) {
141
141
static STRING
142
142
trans_edin (STRING input, INT len)
143
143
{
144
 
        XLAT ttmi = transl_get_predefined_xlat(MEDIN);
 
144
        XLAT ttmi = transl_get_predefined_xlat(MEDIN); /* editor to internal */
145
145
        ZSTR zstr = translate_string_to_zstring(ttmi, input);
146
146
        STRING str = strdup(zs_str(zstr));
147
147
        len=len; /* unused */