diff options
| author | Stefan Monnier | 2006-07-07 15:39:53 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-07-07 15:39:53 +0000 |
| commit | e5a099ecae7eb3bbb1354a75423f074447d92e5f (patch) | |
| tree | 18a2bba48ed11ae86152d6c0a0e206ede537fc93 | |
| parent | 24a768a078dd8b320ca6dd91454c3595ba46f7fb (diff) | |
| download | emacs-e5a099ecae7eb3bbb1354a75423f074447d92e5f.tar.gz emacs-e5a099ecae7eb3bbb1354a75423f074447d92e5f.zip | |
(cvs-temp-buffer-name): Fix non-hiddenness.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/pcvs-defs.el | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1164c941619..c0b24ae8561 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness. | ||
| 4 | |||
| 3 | * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>: | 5 | * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>: |
| 4 | Use shy regexp. Fix incorrect backref to potentially unmatched group. | 6 | Use shy regexp. Fix incorrect backref to potentially unmatched group. |
| 5 | 7 | ||
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 | |||
| 239 | This expression will be evaluated in an environment where DIR is set to | 239 | This expression will be evaluated in an environment where DIR is set to |
| 240 | the directory name of the cvs buffer.") | 240 | the directory name of the cvs buffer.") |
| 241 | 241 | ||
| 242 | (defvar cvs-temp-buffer-name '(expand-file-name " *cvs-tmp*" dir) | 242 | (defvar cvs-temp-buffer-name |
| 243 | ;; Was '(expand-file-name " *cvs-tmp*" dir), but that causes them to | ||
| 244 | ;; become non-hidden if uniquification is done `forward'. | ||
| 245 | " *cvs-tmp*" | ||
| 243 | "*Name of the cvs temporary buffer. | 246 | "*Name of the cvs temporary buffer. |
| 244 | Output from cvs is placed here for asynchronous commands.") | 247 | Output from cvs is placed here for asynchronous commands.") |
| 245 | 248 | ||