# HG changeset patch # User Richard M. Stallman # Date 1031709407 0 # Node ID ff0e463ca59f2b2649c38607a8618af40497f99d # Parent a7b36abfcc69c48b6983805ee42586ff58d0321b (cvs-check-fileinfo): Don't use boolp. (boolp): Function deleted. diff -r a7b36abfcc69 -r ff0e463ca59f lisp/pcvs-info.el --- a/lisp/pcvs-info.el Tue Sep 10 22:19:39 2002 +0000 +++ b/lisp/pcvs-info.el Wed Sep 11 01:56:47 2002 +0000 @@ -4,7 +4,7 @@ ;; Author: Stefan Monnier ;; Keywords: pcl-cvs -;; Revision: $Id: pcvs-info.el,v 1.11 2002/06/18 21:47:41 monnier Exp $ +;; Revision: $Id: pcvs-info.el,v 1.12 2002/06/18 23:03:55 monnier Exp $ ;; This file is part of GNU Emacs. @@ -235,7 +235,6 @@ ;; Predicate: -(defun boolp (x) (or (eq t x) (null x))) (defun cvs-check-fileinfo (fi) "Check FI's conformance to some conventions." (let ((check 'none) @@ -247,7 +246,7 @@ (base-rev (cvs-fileinfo->base-rev fi)) (head-rev (cvs-fileinfo->head-rev fi)) (full-log (cvs-fileinfo->full-log fi))) - (if (and (setq check 'marked) (boolp marked) + (if (and (setq check 'marked) (memq marked '(t nil)) (setq check 'base-rev) (or (null base-rev) (stringp base-rev)) (setq check 'head-rev) (or (null head-rev) (stringp head-rev)) (setq check 'full-log) (stringp full-log)