Mercurial > emacs
changeset 71669:cee3ce32a7ca
(cvs-temp-buffer-name): Fix non-hiddenness.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 07 Jul 2006 15:39:53 +0000 |
parents | a745634e8067 |
children | 3cd05625d982 |
files | lisp/ChangeLog lisp/pcvs-defs.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Jul 07 15:26:26 2006 +0000 +++ b/lisp/ChangeLog Fri Jul 07 15:39:53 2006 +0000 @@ -1,5 +1,7 @@ 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca> + * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness. + * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>: Use shy regexp. Fix incorrect backref to potentially unmatched group.
--- a/lisp/pcvs-defs.el Fri Jul 07 15:26:26 2006 +0000 +++ b/lisp/pcvs-defs.el Fri Jul 07 15:39:53 2006 +0000 @@ -239,7 +239,10 @@ This expression will be evaluated in an environment where DIR is set to the directory name of the cvs buffer.") -(defvar cvs-temp-buffer-name '(expand-file-name " *cvs-tmp*" dir) +(defvar cvs-temp-buffer-name + ;; Was '(expand-file-name " *cvs-tmp*" dir), but that causes them to + ;; become non-hidden if uniquification is done `forward'. + " *cvs-tmp*" "*Name of the cvs temporary buffer. Output from cvs is placed here for asynchronous commands.")