Antonio Teixeira
0f6551ec50
OBS-URL: https://build.opensuse.org/package/show/M17N/groff?expand=0&rev=97
21 lines
381 B
Tcsh
21 lines
381 B
Tcsh
#
|
|
# /etc/profile.d/zzz-groff.csh
|
|
#
|
|
# This script must be executed after setting the LANG variable.
|
|
|
|
if ( $?LANG ) then
|
|
|
|
switch ( $LANG )
|
|
case ja*:
|
|
setenv MAN_KEEP_FORMATTING yes
|
|
unsetenv GROFF_NO_SGR
|
|
case zh*:
|
|
setenv MAN_KEEP_FORMATTING yes
|
|
unsetenv GROFF_NO_SGR
|
|
case ko*:
|
|
setenv MAN_KEEP_FORMATTING yes
|
|
unsetenv GROFF_NO_SGR
|
|
endsw
|
|
|
|
endif
|