summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/cwebdir/comm-vms.ch
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/web2c/cwebdir/comm-vms.ch
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/web2c/cwebdir/comm-vms.ch')
-rw-r--r--Build/source/texk/web2c/cwebdir/comm-vms.ch88
1 files changed, 0 insertions, 88 deletions
diff --git a/Build/source/texk/web2c/cwebdir/comm-vms.ch b/Build/source/texk/web2c/cwebdir/comm-vms.ch
deleted file mode 100644
index caf8ecef795..00000000000
--- a/Build/source/texk/web2c/cwebdir/comm-vms.ch
+++ /dev/null
@@ -1,88 +0,0 @@
-This is the change file for CWEB's COMMON under VAX/VMS.
-
-created:
- 1987 BL (Bjorn Larsen, University of Oslo)
-
-modified:
- 01-FEB-1992 ST (Stephan Trebels <trebels@ams02.dnet.gwdg.de>)
- > include ctype,stdio,ssdef from textlibrary SYS$SHARE:VAXCDEF.TLB
- > change error return code to SS$_ABORT
- (perhaps better than %NONAME-E-NOMSG, Message number 2 )
-
-(also modified by Don Knuth to match changes in the master file)
-(only the two changes by BL are necessary for initial bootstrapping
- via hand-editing of common.c)
-
-@x section 3 (01-FEB-1992 ST)
-#include <ctype.h> /* definition of |@!isalpha|, |@!isdigit| and so on */
-#include <stdbool.h> /* definition of |@!bool|, |@!true| and |@!false| */
-#include <stddef.h> /* definition of |@!ptrdiff_t| */
-#include <stdint.h> /* definition of |@!uint8_t| and |@!uint16_t| */
-#include <stdlib.h> /* definition of |@!getenv| and |@!exit| */
-#include <stdio.h> /* definition of |@!printf| and friends */
-#include <string.h> /* definition of |@!strlen|, |@!strcmp| and so on */
-@y
-#include ctype /* definition of |@!isalpha|, |@!isdigit| and so on */
- /* VMS searches text libraries faster */
-#include stdbool /* definition of |@!bool|, |@!true| and |@!false| */
-#include stddef /* definition of |@!ptrdiff_t| */
-#include stdint /* definition of |@!uint8_t| and |@!uint16_t| */
-#include stdlib /* definition of |@!getenv| and |@!exit| */
-#include stdio /* definition of |@!printf| and friends */
-#include string /* definition of |@!strlen|, |@!strcmp| and so on */
-@z
-
-@x section 68 (01-FEB-1992 ST)
-programs are started. Here, for instance, we pass the operating system
-a status of 0 if and only if only harmless messages were printed.
-@y
-programs are started. Here, for instance, we pass VAX/VMS
-a status of |SS$_NORMAL| if and only if only harmless
-messages have been printed.
-A suitable status to signal an error condition to VAX/VMS could be
-|SS$_ABORT|, telling the operating system to
-print |"%SYSTEM-F-ABORT, abort"|, if |history > harmless_message|.
-@z
-
-@x section 68 (1987 BL) (01-FEB-1992 ST) (11-JAN-1993 DEK)
- if (history > harmless_message) return EXIT_FAILURE;
- else return EXIT_SUCCESS;
-@y
-/*
- VAX/VMS and UNIX have different error status conventions.
- VAX/VMS uses odd values (for example |SS$_NORMAL|) to indicate success,
- even values indicate errors, resulting in messages displayed
- on the screen. |SS$_ABORT| has been chosen, to indicate an
- error and display something that's not complete nonsense.
-*/
- if (history > harmless_message) exit(SS$_ABORT);
- else exit(SS$_NORMAL);
-@z
-
-@x section 75 (01-FEB-1992 ST)
-An omitted change file argument means that |"/dev/null"| should be used,
-when no changes are desired.
-@y
-An omitted change file argument means that the
-null device |"NL:"| should be used, when no changes are desired.
-@z
-
-@x section 76 (1987 BL) (01-FEB-1992 ST) (05-APR-1992 DEK)
- strcpy(change_file_name,"/dev/null");
-@y
- strcpy(change_file_name,"NL:");
- /* {\tt NL:} is the VAX/VMS notation for {\tt /dev/null} */
-@z
-
-@x section 85 (01-FEB-1992 ST)
-@** Index.
-@y
-@* VAX/VMS specific code.
-We have used |SS$_NORMAL| and |SS$_ABORT| as return codes,
-so we have to include the system message codes.
-
-@<Include files@>=
-#include ssdef /* we need VAX/VMS system messages */
-
-@** Index.
-@z