From: Stefan Monnier Date: Fri, 7 Jul 2006 15:39:53 +0000 (+0000) Subject: (cvs-temp-buffer-name): Fix non-hiddenness. X-Git-Tag: emacs-pretest-22.0.90~1656 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e5a099ecae7eb3bbb1354a75423f074447d92e5f;p=emacs.git (cvs-temp-buffer-name): Fix non-hiddenness. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1164c941619..c0b24ae8561 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2006-07-07 Stefan Monnier + * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness. + * progmodes/compile.el (compilation-error-regexp-alist-alist) : Use shy regexp. Fix incorrect backref to potentially unmatched group. diff --git a/lisp/pcvs-defs.el b/lisp/pcvs-defs.el index 127a550b28c..e2c6396bdb2 100644 --- a/lisp/pcvs-defs.el +++ b/lisp/pcvs-defs.el @@ -239,7 +239,10 @@ The CMD used for `cvs-mode-commit' is \"message\". For that special 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.")