(sort-columns): Remove ms-dos from the list of systems

where the external `sort' command is not used.
This commit is contained in:
Eli Zaretskii 2004-03-07 07:08:43 +00:00
parent 5e7b426278
commit 263d3d5d20
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-03-07 Eli Zaretskii <eliz@elta.co.il>
* sort.el (sort-columns): Remove ms-dos from the list of systems
where the external `sort' command is not used.
2004-03-07 Kim F. Storm <storm@cua.dk>
* gdb-ui.el (gdb-overlay-arrow-position): Add defvar.

View file

@ -480,7 +480,7 @@ Use \\[untabify] to convert tabs to spaces before sorting."
(setq col-end (max col-beg1 col-end1))
(if (search-backward "\t" beg1 t)
(error "sort-columns does not work with tabs -- use M-x untabify"))
(if (not (or (memq system-type '(vax-vms windows-nt ms-dos))
(if (not (or (memq system-type '(vax-vms windows-nt))
(let ((pos beg1) plist fontified)
(catch 'found
(while (< pos end1)