summaryrefslogtreecommitdiff
path: root/lisp/pcvs-defs.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2006-07-07 15:39:53 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2006-07-07 15:39:53 +0000
commite5a099ecae7eb3bbb1354a75423f074447d92e5f (patch)
tree18a2bba48ed11ae86152d6c0a0e206ede537fc93 /lisp/pcvs-defs.el
parent24a768a078dd8b320ca6dd91454c3595ba46f7fb (diff)
downloademacs-e5a099ecae7eb3bbb1354a75423f074447d92e5f.tar.gz
(cvs-temp-buffer-name): Fix non-hiddenness.
Diffstat (limited to 'lisp/pcvs-defs.el')
-rw-r--r--lisp/pcvs-defs.el5
1 files changed, 4 insertions, 1 deletions
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.")