X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/142e26a72e9b8bbbec23c6bf7234e9f2544b5f89..2b34df4ebc935a834a77b930b35c4a42f7236440:/lisp/sort.el diff --git a/lisp/sort.el b/lisp/sort.el index d08e07dc4b..c9230da3e9 100644 --- a/lisp/sort.el +++ b/lisp/sort.el @@ -1,7 +1,7 @@ ;;; sort.el --- commands to sort text in an Emacs buffer ;; Copyright (C) 1986, 1987, 1994, 1995, 2001, 2002, 2003, -;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ;; Author: Howie Kaye ;; Maintainer: FSF @@ -34,7 +34,7 @@ :group 'data) (defcustom sort-fold-case nil - "*Non-nil if the buffer sort functions should ignore case." + "Non-nil if the buffer sort functions should ignore case." :group 'sort :type 'boolean) ;;;###autoload(put 'sort-fold-case 'safe-local-variable 'booleanp) @@ -256,7 +256,7 @@ the sort order." (setq sort-fields-syntax-table table))) (defcustom sort-numeric-base 10 - "*The default base used by `sort-numeric-fields'." + "The default base used by `sort-numeric-fields'." :group 'sort :type 'integer) ;;;###autoload(put 'sort-numeric-base 'safe-local-variable 'integerp) @@ -491,7 +491,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)) + (if (not (or (memq system-type '(windows-nt)) (let ((pos beg1) plist fontified) (catch 'found (while (< pos end1) @@ -516,7 +516,7 @@ Use \\[untabify] to convert tabs to spaces before sorting." (when sort-fold-case (push "-f" sort-args)) (apply #'call-process-region beg1 end1 "sort" t t nil sort-args)) - ;; On VMS and ms-windows, use Emacs's own facilities. + ;; On ms-windows, use Emacs's own facilities. (save-excursion (save-restriction (narrow-to-region beg1 end1)