Mercurial > emacs
view lisp/gnus/gnus-range.el @ 20892:18f3cb26243f before-miles-orphaned-changes gcc-2_8_1-980401 gcc-2_8_1-980407 gcc-2_8_1-980412 gcc-2_8_1-980413 gcc-2_8_1-RELEASE gcc_2_8_1-980315 libc-980214 libc-980215 libc-980216 libc-980217 libc-980218 libc-980219 libc-980220 libc-980221 libc-980222 libc-980223 libc-980224 libc-980225 libc-980226 libc-980227 libc-980228 libc-980301 libc-980302 libc-980303 libc-980304 libc-980306 libc-980307 libc-980308 libc-980309 libc-980310 libc-980311 libc-980312 libc-980313 libc-980314 libc-980315 libc-980316 libc-980317 libc-980318 libc-980319 libc-980320 libc-980321 libc-980322 libc-980323 libc-980324 libc-980325 libc-980326 libc-980327 libc-980328 libc-980329 libc-980330 libc-980331 libc-980401 libc-980402 libc-980403 libc-980404 libc-980405 libc-980406 libc-980407 libc-980408 libc-980409 libc-980410 libc-980411 libc-980412 libc-980413 libc-980414 libc-980428 libc-980429 libc-980430 libc-980501 libc-980502 libc-980503 libc-980504 libc-980505 libc-980506 libc-980507 libc-980508 libc-980509 libc-980510 libc-980512 libc-980513 libc-980514 libc-980515 libc-980516 libc-980517 libc-980518 libc-980519 libc-980520 libc-980521 libc-980522 libc-980523 libc-980524 libc-980525 libc-980526 libc-980527 libc-980528 libc-980529 libc-980530 libc-980531 libc-980601 libc-980602 libc-980603 libc-980604 libc-980605 libc-980606 libc-980607 libc-980608 libc-980609 libc-980610 libc-980611 libc-980612 libc-980613
Add PentiumII (i786). Add '7' to all i[3456] entries.
Add AMD and Cyrix names for P5 and P6.
author | Richard Kenner <kenner@gnu.org> |
---|---|
date | Fri, 13 Feb 1998 12:16:46 +0000 |
parents | 5f1ab3dd344d |
children | 15fc6acbae7a |
line wrap: on
line source
;;; gnus-range.el --- range and sequence functions for Gnus ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no> ;; Keywords: news ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Commentary: ;;; Code: (eval-when-compile (require 'cl)) ;;; List and range functions (defun gnus-last-element (list) "Return last element of LIST." (while (cdr list) (setq list (cdr list))) (car list)) (defun gnus-copy-sequence (list) "Do a complete, total copy of a list." (let (out) (while (consp list) (if (consp (car list)) (push (gnus-copy-sequence (pop list)) out) (push (pop list) out))) (if list (nconc (nreverse out) list) (nreverse out)))) (defun gnus-set-difference (list1 list2) "Return a list of elements of LIST1 that do not appear in LIST2." (let ((list1 (copy-sequence list1))) (while list2 (setq list1 (delq (car list2) list1)) (setq list2 (cdr list2))) list1)) (defun gnus-sorted-complement (list1 list2) "Return a list of elements of LIST1 that do not appear in LIST2. Both lists have to be sorted over <." (let (out) (if (or (null list1) (null list2)) (or list1 list2) (while (and list1 list2) (cond ((= (car list1) (car list2)) (setq list1 (cdr list1) list2 (cdr list2))) ((< (car list1) (car list2)) (setq out (cons (car list1) out)) (setq list1 (cdr list1))) (t (setq out (cons (car list2) out)) (setq list2 (cdr list2))))) (nconc (nreverse out) (or list1 list2))))) (defun gnus-intersection (list1 list2) (let ((result nil)) (while list2 (when (memq (car list2) list1) (setq result (cons (car list2) result))) (setq list2 (cdr list2))) result)) (defun gnus-sorted-intersection (list1 list2) ;; LIST1 and LIST2 have to be sorted over <. (let (out) (while (and list1 list2) (cond ((= (car list1) (car list2)) (setq out (cons (car list1) out) list1 (cdr list1) list2 (cdr list2))) ((< (car list1) (car list2)) (setq list1 (cdr list1))) (t (setq list2 (cdr list2))))) (nreverse out))) (defun gnus-set-sorted-intersection (list1 list2) ;; LIST1 and LIST2 have to be sorted over <. ;; This function modifies LIST1. (let* ((top (cons nil list1)) (prev top)) (while (and list1 list2) (cond ((= (car list1) (car list2)) (setq prev list1 list1 (cdr list1) list2 (cdr list2))) ((< (car list1) (car list2)) (setcdr prev (cdr list1)) (setq list1 (cdr list1))) (t (setq list2 (cdr list2))))) (setcdr prev nil) (cdr top))) (defun gnus-compress-sequence (numbers &optional always-list) "Convert list of numbers to a list of ranges or a single range. If ALWAYS-LIST is non-nil, this function will always release a list of ranges." (let* ((first (car numbers)) (last (car numbers)) result) (if (null numbers) nil (if (not (listp (cdr numbers))) numbers (while numbers (cond ((= last (car numbers)) nil) ;Omit duplicated number ((= (1+ last) (car numbers)) ;Still in sequence (setq last (car numbers))) (t ;End of one sequence (setq result (cons (if (= first last) first (cons first last)) result)) (setq first (car numbers)) (setq last (car numbers)))) (setq numbers (cdr numbers))) (if (and (not always-list) (null result)) (if (= first last) (list first) (cons first last)) (nreverse (cons (if (= first last) first (cons first last)) result))))))) (defalias 'gnus-uncompress-sequence 'gnus-uncompress-range) (defun gnus-uncompress-range (ranges) "Expand a list of ranges into a list of numbers. RANGES is either a single range on the form `(num . num)' or a list of these ranges." (let (first last result) (cond ((null ranges) nil) ((not (listp (cdr ranges))) (setq first (car ranges)) (setq last (cdr ranges)) (while (<= first last) (setq result (cons first result)) (setq first (1+ first))) (nreverse result)) (t (while ranges (if (atom (car ranges)) (when (numberp (car ranges)) (setq result (cons (car ranges) result))) (setq first (caar ranges)) (setq last (cdar ranges)) (while (<= first last) (setq result (cons first result)) (setq first (1+ first)))) (setq ranges (cdr ranges))) (nreverse result))))) (defun gnus-add-to-range (ranges list) "Return a list of ranges that has all articles from both RANGES and LIST. Note: LIST has to be sorted over `<'." (if (not ranges) (gnus-compress-sequence list t) (setq list (copy-sequence list)) (unless (listp (cdr ranges)) (setq ranges (list ranges))) (let ((out ranges) ilist lowest highest temp) (while (and ranges list) (setq ilist list) (setq lowest (or (and (atom (car ranges)) (car ranges)) (caar ranges))) (while (and list (cdr list) (< (cadr list) lowest)) (setq list (cdr list))) (when (< (car ilist) lowest) (setq temp list) (setq list (cdr list)) (setcdr temp nil) (setq out (nconc (gnus-compress-sequence ilist t) out))) (setq highest (or (and (atom (car ranges)) (car ranges)) (cdar ranges))) (while (and list (<= (car list) highest)) (setq list (cdr list))) (setq ranges (cdr ranges))) (when list (setq out (nconc (gnus-compress-sequence list t) out))) (setq out (sort out (lambda (r1 r2) (< (or (and (atom r1) r1) (car r1)) (or (and (atom r2) r2) (car r2)))))) (setq ranges out) (while ranges (if (atom (car ranges)) (when (cdr ranges) (if (atom (cadr ranges)) (when (= (1+ (car ranges)) (cadr ranges)) (setcar ranges (cons (car ranges) (cadr ranges))) (setcdr ranges (cddr ranges))) (when (= (1+ (car ranges)) (caadr ranges)) (setcar (cadr ranges) (car ranges)) (setcar ranges (cadr ranges)) (setcdr ranges (cddr ranges))))) (when (cdr ranges) (if (atom (cadr ranges)) (when (= (1+ (cdar ranges)) (cadr ranges)) (setcdr (car ranges) (cadr ranges)) (setcdr ranges (cddr ranges))) (when (= (1+ (cdar ranges)) (caadr ranges)) (setcdr (car ranges) (cdadr ranges)) (setcdr ranges (cddr ranges)))))) (setq ranges (cdr ranges))) out))) (defun gnus-remove-from-range (ranges list) "Return a list of ranges that has all articles from LIST removed from RANGES. Note: LIST has to be sorted over `<'." ;; !!! This function shouldn't look like this, but I've got a headache. (gnus-compress-sequence (gnus-sorted-complement (gnus-uncompress-range ranges) list))) (defun gnus-member-of-range (number ranges) (if (not (listp (cdr ranges))) (and (>= number (car ranges)) (<= number (cdr ranges))) (let ((not-stop t)) (while (and ranges (if (numberp (car ranges)) (>= number (car ranges)) (>= number (caar ranges))) not-stop) (when (if (numberp (car ranges)) (= number (car ranges)) (and (>= number (caar ranges)) (<= number (cdar ranges)))) (setq not-stop nil)) (setq ranges (cdr ranges))) (not not-stop)))) (defun gnus-range-length (range) "Return the length RANGE would have if uncompressed." (length (gnus-uncompress-range range))) (defun gnus-sublist-p (list sublist) "Test whether all elements in SUBLIST are members of LIST." (let ((sublistp t)) (while sublist (unless (memq (pop sublist) list) (setq sublistp nil sublist nil))) sublistp)) (defun gnus-range-add (range1 range2) "Add RANGE2 to RANGE1 destructively." (cond ;; If either are nil, then the job is quite easy. ((or (null range1) (null range2)) (or range1 range2)) (t ;; I don't like thinking. (gnus-compress-sequence (sort (nconc (gnus-uncompress-range range1) (gnus-uncompress-range range2)) '<))))) (provide 'gnus-range) ;;; gnus-range.el ends here