summaryrefslogtreecommitdiff
path: root/Build/source/texk/seetexk/gripes1.c
diff options
context:
space:
mode:
authorDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
committerDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
commitc6101f91d071883b48b1b4b51e5eba0f36d9a78d (patch)
tree1bf7f5a881d7a4f5c5bf59d0b2821943dd822372 /Build/source/texk/seetexk/gripes1.c
parent07ee7222e389b0777456b427a55c22d0e6ffd267 (diff)
French translation for tlmgr updated
git-svn-id: svn://tug.org/texlive/trunk@57912 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/seetexk/gripes1.c')
-rw-r--r--Build/source/texk/seetexk/gripes1.c162
1 files changed, 0 insertions, 162 deletions
diff --git a/Build/source/texk/seetexk/gripes1.c b/Build/source/texk/seetexk/gripes1.c
deleted file mode 100644
index 00c3885676b..00000000000
--- a/Build/source/texk/seetexk/gripes1.c
+++ /dev/null
@@ -1,162 +0,0 @@
-/* Copyright (c) 1987, 1989, 2012 University of Maryland Department of
- Computer Science.
-
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation, the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions: The above copyright notice, this permission
- notice and the disclaimer statement shall be included in all copies
- or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-*/
-
-/*
- * Gripes having to do with DVI files.
- */
-
-#include "types.h"
-#include "error.h"
-#include "font.h"
-#include "gripes.h"
-#include <stdio.h>
-
-static const char *
-dfn(void)
-{
-
- return (DVIFileName ? DVIFileName : "the input");
-}
-
-/*
- * Save string space by declaring these here.
- */
-#if __STDC__ >= 1
-static const char dfl[] = "DVI file";
-static const char areyousure[] = "(are you sure %s is a %s?)";
-#else
-static char dfl[] = "DVI file";
-static char areyousure[] = "(are you sure %s is a %s?)";
-#endif
-
-/*
- * DVI file requests a font it never defined.
- */
-void
-GripeNoSuchFont(i32 n)
-{
-
- error(0, 0, "%s wants font %ld, which it never defined", dfl, (long)n);
- error(1, 0, areyousure, dfn(), dfl);
- /* NOTREACHED */
-}
-
-/*
- * DVI file redefines a font.
- */
-void
-GripeFontAlreadyDefined(i32 n)
-{
-
- error(0, 0, "%s redefines font %ld", dfl, n);
- error(1, 0, areyousure, dfn(), dfl);
- /* NOTREACHED */
-}
-
-/*
- * Unexpected end of DVI file.
- */
-void
-GripeUnexpectedDVIEOF(void)
-{
-
- GripeUnexpectedOp("end of file");
- /* NOTREACHED */
-}
-
-/*
- * Unexpected DVI opcode.
- */
-void
-GripeUnexpectedOp(const char *s)
-{
-
- error(0, 0, "unexpected %s in %s", s, dfl);
- error(1, 0, areyousure, dfn(), dfl);
- /* NOTREACHED */
-}
-
-/*
- * Missing DVI opcode.
- */
-void
-GripeMissingOp(const char *s)
-{
-
- error(0, 0, "missing %s in %s", s, dfl);
- error(1, 0, areyousure, dfn(), dfl);
- /* NOTREACHED */
-}
-
-/*
- * Cannot find DVI postamble.
- */
-void
-GripeCannotFindPostamble(void)
-{
-
- error(0, 0, "cannot find postamble");
- error(1, 0, areyousure, dfn(), dfl);
- /* NOTREACHED */
-}
-
-/*
- * Inconsistent DVI value.
- */
-void
-GripeMismatchedValue(const char *s)
-{
-
- error(0, 0, "mismatched %s in %s", s, dfl);
- error(1, 0, areyousure, dfn(), dfl);
- /* NOTREACHED */
-}
-
-/*
- * Undefined DVI opcode.
- */
-void
-GripeUndefinedOp(int n)
-{
-
- error(0, 0, "undefined DVI opcode %d", n);
- error(1, 0, areyousure, dfn(), dfl);
- /* NOTREACHED */
-}
-
-/*
- * DVI file requests glyph that is not in some font, or
- * when no font is set for this page.
- *
- * RETURNS TO CALLER
- */
-void
-GripeBadGlyph(i32 c, struct font *f)
-{
-
- if (f->f_path == NULL) {
- error(0, 0, "bad %s: char without setfont", dfl);
- error(1, 0, "(try checking %s with dvitype)", dfn());
- /* NOTREACHED */
- }
- error(0, 0, "there is no character %ld in %s!", (long)c, f->f_path);
-}