1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

dtinfogen: Remove an unused environment variable.

This commit is contained in:
Liang Chang 2021-12-05 23:38:01 +08:00
parent 07e8d816d3
commit d6ce4d14f5

View file

@ -84,7 +84,6 @@ typedef struct _GlobalsStruct
char *dtInfoHomeEnv;
char *dtInfoBinEnv;
char *tmpDirEnv;
char *sgmlPathEnv;
char *sgmlSearchPathEnv;
char *sgmlCatFilesEnv;
char *sgmlCatFiles;
@ -1004,7 +1003,6 @@ defaultGlobals(void)
gStruct->dtInfoHomeEnv = makeAbsPathEnv("DTINFO_HOME");
gStruct->dtInfoBinEnv = makeAbsPathEnv("DTINFO_BIN");
gStruct->tmpDirEnv = makeAbsPathEnv("TMPDIR");
gStruct->sgmlPathEnv = makeAbsPathEnv("SGML_PATH");
gStruct->sgmlSearchPathEnv = makeAbsPathEnv("SGML_SEARCH_PATH");
gStruct->sgmlCatFilesEnv = makeAbsPathEnv("SGML_CATALOG_FILES");
gStruct->sgmlCatFiles = NULL;