]> code.delx.au - gnu-emacs/commitdiff
(sort-columns): Remove ms-dos from the list of systems
authorEli Zaretskii <eliz@gnu.org>
Sun, 7 Mar 2004 07:08:43 +0000 (07:08 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 7 Mar 2004 07:08:43 +0000 (07:08 +0000)
where the external `sort' command is not used.

lisp/ChangeLog
lisp/sort.el

index 068e25de870e41c7b97145a030af0477a0f29a77..4a237696188bf14fdc0798f0afc66508f652506f 100644 (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.
index 76559f17288884deb427ba8f4aa0a6768f02fe7e..d90369cabcda0212138c1675c405d72190cbc48c 100644 (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)