]> git.eshelyaron.com Git - emacs.git/commitdiff
Signal a better error in tabulated-list-sort
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 29 Nov 2021 15:39:02 +0000 (16:39 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 29 Nov 2021 15:39:02 +0000 (16:39 +0100)
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-sort): Signal
error earlier on invalid column numbers (bug#52154).

lisp/emacs-lisp/tabulated-list.el

index 8f6c655dbef61b1a7df0b91eec4bfb31b6e508cf..075fe836f6bb0afe3881039cfadb50f03be95d75 100644 (file)
@@ -684,6 +684,10 @@ With a numeric prefix argument N, sort the Nth column.
 If the numeric prefix is -1, restore order the list was
 originally displayed in."
   (interactive "P")
+  (when (and n
+             (or (>= n (length tabulated-list-format))
+                 (< n -1)))
+    (user-error "Invalid column number"))
   (if (equal n -1)
       ;; Restore original order.
       (progn