branch: elpa/tablist commit dad26a1e050963b0c63118431f01230db78d6b2a Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Fix typos --- tablist-filter.el | 2 +- tablist.el | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tablist-filter.el b/tablist-filter.el index 0317fb6..00c8a1d 100644 --- a/tablist-filter.el +++ b/tablist-filter.el @@ -371,7 +371,7 @@ By default the filters are and'ed, unless OR-P is non-nil." "Remove the first operator or operand from filter. If filter starts with a negation, return filter unnegated, -if filter starts with a dis- or conjuction, remove the first operand, +if filter starts with a dis- or conjunction, remove the first operand, if filter is nil, raise an error, else return nil." (pcase filter diff --git a/tablist.el b/tablist.el index 7787423..59fe7a7 100644 --- a/tablist.el +++ b/tablist.el @@ -547,7 +547,7 @@ OLD and NEW are both characters used to mark files." (tablist-put-mark))))))))) (defun tablist-unmark-all-marks (&optional marks interactive) - "Remove alls marks in MARKS. + "Remove all marks in MARKS. MARKS should be a string of mark characters to match and defaults to all marks. Interactively, remove all marks, unless a prefix @@ -647,13 +647,13 @@ proceeds as \(BINOP N OPERAND\)." (list (funcall fn)))) (t (cl-labels ((search (re) - (let (sucess) + (let (success) (tablist-skip-invisible-entries) - (while (and (setq sucess + (while (and (setq success (re-search-forward re nil t)) (invisible-p (point))) (tablist-forward-entry)) - sucess))) + success))) (let ((regexp (tablist-marker-regexp)) next-position results found) (save-excursion @@ -953,7 +953,7 @@ ARG the prefix-arg of the command used in ARG should be the `current-prefix-arg', FN is a function of two arguments \(ID ENTRY\) handling the operation. It gets called -repeatly with all marked items. OPERATION is a symbol or string +repeatedly with all marked items. OPERATION is a symbol or string describing the operation, it is used for display. Optional non-nil DELETE-P means, remove the items from the display. @@ -1369,7 +1369,7 @@ Return the output buffer." (defun tablist-enlarge-column (&optional column width) "Enlarge column COLUMN by WIDTH. -This function is lazy and therfore pretty slow." +This function is lazy and therefore pretty slow." (interactive (list nil (* (prefix-numeric-value current-prefix-arg) 3)))