bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cvs-prefix-define confuses apropos


From: Stefan Monnier
Subject: Re: cvs-prefix-define confuses apropos
Date: 03 Oct 2001 16:29:30 -0400
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.0.106

>>>>> "Matt" == Matt McClure <mlm@aya.yale.edu> writes:
> I did "M-x apropos RET cvs.*mark", and I got the following error:

>     Cannot open doc string file "c:/Program Files/emacs-20.7/etc/Prefix
>     to decide whether to ignore marks or not."

> With "M-x apropos RET cvs.*branch", I get:

>     Cannot open doc string file "c:/Program Files/emacs-20.7/etc/Current
>     selected branch."

It's a really stupid mistake in pcl-cvs-util.el where I used
`cons' in place of `concat'.  Senility attack!


        Stefan


--- pcvs-util.el.~1.13.~        Mon Jul 16 19:52:55 2001
+++ pcvs-util.el        Wed Oct  3 16:24:38 2001
@@ -348,7 +348,7 @@
                                 &optional qtypedesc hist-sym)
   (let ((cps (cvs-prefix-sym sym)))
     `(progn
-       (defvar ,sym nil ,(cons (or docstring "") "
+       (defvar ,sym nil ,(concat (or docstring "") "
 See `cvs-prefix-set' for further description of the behavior."))
        (defconst ,cps
         (let ((defaults ,defaults))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]