aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes/texinfmt.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-08-30 03:47:47 +0000
committerRichard M. Stallman <[email protected]>1996-08-30 03:47:47 +0000
commitb53e01dc0229a0f949c841a73ca210087a194e51 (patch)
tree7a5b898d16a1fd135603ba0028d13270d3ce0a6c /lisp/textmodes/texinfmt.el
parent4fcb3ccf63429b01d95f3d22b28223f644bdccf2 (diff)
(texinfo-format-printindex):
Treat windows-nt and ms-dos like vax-vms.
Diffstat (limited to 'lisp/textmodes/texinfmt.el')
-rw-r--r--lisp/textmodes/texinfmt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el
index a5ad374d1f..7e6dcd57c2 100644
--- a/lisp/textmodes/texinfmt.el
+++ b/lisp/textmodes/texinfmt.el
@@ -2084,7 +2084,7 @@ Default is to leave paragraph indentation as is."
(setq opoint (point))
(texinfo-print-index nil indexelts)
- (if (eq system-type 'vax-vms)
+ (if (memq system-type '(vax-vms windows-nt ms-dos))
(texinfo-sort-region opoint (point))
(shell-command-on-region opoint (point) "sort -fd" 1))))