1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-04 20:27:45 +00:00

(cvs-temp-buffer-name): Fix non-hiddenness.

This commit is contained in:
Stefan Monnier 2006-07-07 15:39:53 +00:00
parent 24a768a078
commit e5a099ecae
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca> 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>: * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
Use shy regexp. Fix incorrect backref to potentially unmatched group. Use shy regexp. Fix incorrect backref to potentially unmatched group.

View File

@ -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 This expression will be evaluated in an environment where DIR is set to
the directory name of the cvs buffer.") 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. "*Name of the cvs temporary buffer.
Output from cvs is placed here for asynchronous commands.") Output from cvs is placed here for asynchronous commands.")