From c96ab25defb31fc596818a39e1a632dd09e2cc72 Mon Sep 17 00:00:00 2001 From: Thuna Date: Sat, 2 Jul 2022 18:21:53 +0300 Subject: [PATCH 3/4] Fix typos in tabulated-list-make-column-visible In the docstring: propmted -> prompted In the `completing-read' prompt: colummn -> column --- lisp/emacs-lisp/tabulated-list.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el index 4e0b3b9e95..96607307fa 100644 --- a/lisp/emacs-lisp/tabulated-list.el +++ b/lisp/emacs-lisp/tabulated-list.el @@ -791,11 +791,11 @@ tabulated-list-hide-current-column (defun tabulated-list-make-column-visible (name) "Make the tabulated list column NAME visible. -Interactively, NAME is a hidden column propmted for with +Interactively, NAME is a hidden column prompted for with `completing-read'." (interactive (list - (completing-read "Colummn name: " + (completing-read "Column name: " (append tabulated-list-format nil) (lambda (col) (plist-get (nthcdr 3 col) :hidden)) -- 2.35.1