~ubuntu-branches/ubuntu/oneiric/evince/oneiric-updates

« back to all changes in this revision

Viewing changes to backend/dvi/mdvi-lib/pagesel.c

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Josselin Mouette, Marc 'HE' Brockschmidt
  • Date: 2008-12-31 16:41:58 UTC
  • mfrom: (1.1.36 upstream)
  • mto: (1.5.1 sid)
  • mto: This revision was merged to the branch mainline in revision 109.
  • Revision ID: james.westby@ubuntu.com-20081231164158-xnobl1sokvvc6ho8
Tags: 2.24.2-1
[ Josselin Mouette ]
* README.Debian: document that you need to install poppler-data.
  Closes: #506836.

[ Marc 'HE' Brockschmidt ]
* debian/control: Make the Gnome team maintainer. I'm not doing the job
   anyway.

[ Josselin Mouette ]
* New upstream release.
* Require nautilus 2.22 to build the extension for the correct 
  version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
209
209
                range = mdvi_parse_range(format, NULL, &count, &ptr);
210
210
                if(ptr == format) {
211
211
                        if(range) mdvi_free(range);
212
 
                        error(_("invalid page specification `%s'\n"), format);
 
212
                        mdvi_error(_("invalid page specification `%s'\n"), format);
213
213
                        return NULL;
214
214
                }
215
215
        } else
229
229
        
230
230
        if(*ptr != '.') {
231
231
                if(*ptr)
232
 
                        warning(_("garbage after DVI page specification ignored\n"));
 
232
                        mdvi_warning(_("garbage after DVI page specification ignored\n"));
233
233
                return spec;
234
234
        }
235
235
        
257
257
        }
258
258
        
259
259
        if(i > 10)
260
 
                warning(_("more than 10 counters in page specification\n"));
 
260
                mdvi_warning(_("more than 10 counters in page specification\n"));
261
261
        else if(*ptr)
262
 
                warning(_("garbage after TeX page specification ignored\n"));
 
262
                mdvi_warning(_("garbage after TeX page specification ignored\n"));
263
263
        
264
264
        return spec;    
265
265
}