# HG changeset patch # User Stefan Monnier # Date 987173770 0 # Node ID 221cb2f0438bce3e79e17d1d0d2432308ea83e15 # Parent 00d515266792d389054e386d110e5fc71cb38d87 Add comments. diff -r 00d515266792 -r 221cb2f0438b lisp/pcvs-util.el --- a/lisp/pcvs-util.el Fri Apr 13 14:55:48 2001 +0000 +++ b/lisp/pcvs-util.el Fri Apr 13 14:56:10 2001 +0000 @@ -5,7 +5,7 @@ ;; Author: Stefan Monnier ;; Keywords: pcl-cvs -;; Revision: $Id: pcvs-util.el,v 1.10 2001/03/07 00:19:08 monnier Exp $ +;; Revision: $Id: pcvs-util.el,v 1.11 2001/03/20 20:26:13 johnw Exp $ ;; This file is part of GNU Emacs. @@ -167,8 +167,10 @@ ;; At least 2 columns; at least 2 spaces between columns. (max 2 (/ wwidth (+ 2 length))) ;; Don't allocate more columns than we can fill. + ;; Windows can't show less than 3 lines anyway. (max 1 (/ (length strings) 2)))) (colwidth (/ wwidth columns))) + ;; Use tab-width rather than indent-to. (setq tab-width colwidth) ;; The insertion should be "sensible" no matter what choices were made. (dolist (str strings)