]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/emacs-lisp/range.el: Fix some typos
authorMichael Heerdegen <michael_heerdegen@web.de>
Wed, 11 Jan 2023 15:47:01 +0000 (16:47 +0100)
committerMichael Heerdegen <michael_heerdegen@web.de>
Sat, 28 Jan 2023 16:30:42 +0000 (17:30 +0100)
In some places, range elements are still called "article" (as in the
original Gnus code).
Replace these occurrences with the word "number" as used in the rest
of the file.

lisp/emacs-lisp/range.el

index 1165fcbbd7da292a42d98b23b990d24ac6f7b81d..f441c240a27f7517e038431ddfb7a95268eb7afd 100644 (file)
@@ -194,7 +194,7 @@ these ranges."
       (nreverse result)))))
 
 (defun range-add-list (ranges list)
-  "Return a list of ranges that has all articles from both RANGES and LIST.
+  "Return a list of ranges that has all numbers from both RANGES and LIST.
 Note: LIST has to be sorted over `<'."
   (if (not ranges)
       (range-compress-list list)
@@ -249,9 +249,9 @@ Note: LIST has to be sorted over `<'."
       out)))
 
 (defun range-remove (range1 range2)
-  "Return a range that has all articles from RANGE2 removed from RANGE1.
+  "Return a range that has all numbers from RANGE2 removed from RANGE1.
 The returned range is always a list.  RANGE2 can also be a unsorted
-list of articles.  RANGE1 is modified by side effects, RANGE2 is not
+list of numbers.  RANGE1 is modified by side effects, RANGE2 is not
 modified."
   (if (or (null range1) (null range2))
       range1
@@ -345,7 +345,7 @@ modified."
 
 (defun range-list-intersection (list ranges)
   "Return a list of numbers in LIST that are members of RANGES.
-oLIST is a sorted list."
+LIST is a sorted list."
   (setq ranges (range-normalize ranges))
   (let (number result)
     (while (setq number (pop list))