comparison lisp/international/mule-cmds.el @ 78484:edc666d07b2c

Replace `iff' in doc-strings and comments.
author Glenn Morris <rgm@gnu.org>
date Wed, 08 Aug 2007 07:24:27 +0000
parents 2daf9c28b3a4
children 96dc85a06a3a 5b644ae74c91 424b655804ca
comparison
equal deleted inserted replaced
78483:ee4552a02131 78484:edc666d07b2c
443 (func (function 443 (func (function
444 (lambda (x) 444 (lambda (x)
445 (let ((base (coding-system-base x))) 445 (let ((base (coding-system-base x)))
446 ;; We calculate the priority number 0..255 by 446 ;; We calculate the priority number 0..255 by
447 ;; using the 8 bits PMMLCEII as this: 447 ;; using the 8 bits PMMLCEII as this:
448 ;; P: 1 iff most preferred. 448 ;; P: 1 if most preferred.
449 ;; MM: greater than 0 iff mime-charset. 449 ;; MM: greater than 0 if mime-charset.
450 ;; L: 1 iff one of the current lang. env.'s codings. 450 ;; L: 1 if one of the current lang. env.'s codings.
451 ;; C: 1 iff one of codings listed in the category list. 451 ;; C: 1 if one of codings listed in the category list.
452 ;; E: 1 iff not XXX-with-esc 452 ;; E: 1 if not XXX-with-esc
453 ;; II: if iso-2022 based, 0..3, else 1. 453 ;; II: if iso-2022 based, 0..3, else 1.
454 (logior 454 (logior
455 (lsh (if (eq base most-preferred) 1 0) 7) 455 (lsh (if (eq base most-preferred) 1 0) 7)
456 (lsh 456 (lsh
457 (let ((mime (coding-system-get base 'mime-charset))) 457 (let ((mime (coding-system-get base 'mime-charset)))