X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=backend%2Fdvi%2Fmdvi-lib%2Fpagesel.c;h=5a153955fa852fe4e168db0c2a38156da0133f5e;hb=ab0edaffd2f1790ec8ac7ac17f90e0a8007b92cd;hp=75fdad8b455c69813ae66bd81fcda2bd248f05e4;hpb=1af6600934d1f723e5b492b8322e52a1144fb0af;p=evince.git diff --git a/backend/dvi/mdvi-lib/pagesel.c b/backend/dvi/mdvi-lib/pagesel.c index 75fdad8b..5a153955 100644 --- a/backend/dvi/mdvi-lib/pagesel.c +++ b/backend/dvi/mdvi-lib/pagesel.c @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include @@ -209,7 +209,7 @@ DviPageSpec *mdvi_parse_page_spec(const char *format) range = mdvi_parse_range(format, NULL, &count, &ptr); if(ptr == format) { if(range) mdvi_free(range); - error(_("invalid page specification `%s'\n"), format); + mdvi_error(_("invalid page specification `%s'\n"), format); return NULL; } } else @@ -229,7 +229,7 @@ DviPageSpec *mdvi_parse_page_spec(const char *format) if(*ptr != '.') { if(*ptr) - warning(_("garbage after DVI page specification ignored\n")); + mdvi_warning(_("garbage after DVI page specification ignored\n")); return spec; } @@ -257,9 +257,9 @@ DviPageSpec *mdvi_parse_page_spec(const char *format) } if(i > 10) - warning(_("more than 10 counters in page specification\n")); + mdvi_warning(_("more than 10 counters in page specification\n")); else if(*ptr) - warning(_("garbage after TeX page specification ignored\n")); + mdvi_warning(_("garbage after TeX page specification ignored\n")); return spec; }