aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-08-30 03:47:47 +0000
committerRichard M. Stallman1996-08-30 03:47:47 +0000
commitb53e01dc0229a0f949c841a73ca210087a194e51 (patch)
tree7a5b898d16a1fd135603ba0028d13270d3ce0a6c
parent4fcb3ccf63429b01d95f3d22b28223f644bdccf2 (diff)
downloademacs-b53e01dc0229a0f949c841a73ca210087a194e51.tar.gz
emacs-b53e01dc0229a0f949c841a73ca210087a194e51.zip
(texinfo-format-printindex):
Treat windows-nt and ms-dos like vax-vms.
-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 a5ad374d1fd..7e6dcd57c25 100644
--- a/lisp/textmodes/texinfmt.el
+++ b/lisp/textmodes/texinfmt.el
@@ -2084,7 +2084,7 @@ Default is to leave paragraph indentation as is."
2084 (setq opoint (point)) 2084 (setq opoint (point))
2085 (texinfo-print-index nil indexelts) 2085 (texinfo-print-index nil indexelts)
2086 2086
2087 (if (eq system-type 'vax-vms) 2087 (if (memq system-type '(vax-vms windows-nt ms-dos))
2088 (texinfo-sort-region opoint (point)) 2088 (texinfo-sort-region opoint (point))
2089 (shell-command-on-region opoint (point) "sort -fd" 1)))) 2089 (shell-command-on-region opoint (point) "sort -fd" 1))))
2090 2090