diff options
| author | Basil L. Contovounesios | 2020-12-11 01:50:17 +0000 |
|---|---|---|
| committer | Basil L. Contovounesios | 2020-12-11 02:23:23 +0000 |
| commit | 9bfcee52c1f191706d50adc194739f642686607e (patch) | |
| tree | f1e06e16a392740ec6611e8f5cc222d4be3d048c | |
| parent | 808817d76f0c1e1d7f9d9f60f1f6f72773d71d5f (diff) | |
| download | emacs-9bfcee52c1f191706d50adc194739f642686607e.tar.gz emacs-9bfcee52c1f191706d50adc194739f642686607e.zip | |
Fix quoting in gnus-buffer-configuration
* lisp/gnus/gnus-win.el (gnus-buffer-configuration): Include
shell-command-buffer-name value rather than symbol in pipe
configuration. (Bug#39138, bug#45154)
| -rw-r--r-- | lisp/gnus/gnus-win.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-win.el b/lisp/gnus/gnus-win.el index baa3146e64e..e900e294c57 100644 --- a/lisp/gnus/gnus-win.el +++ b/lisp/gnus/gnus-win.el | |||
| @@ -68,7 +68,7 @@ used to display Gnus windows." | |||
| 68 | :type 'boolean) | 68 | :type 'boolean) |
| 69 | 69 | ||
| 70 | (defvar gnus-buffer-configuration | 70 | (defvar gnus-buffer-configuration |
| 71 | '((group | 71 | `((group |
| 72 | (vertical 1.0 | 72 | (vertical 1.0 |
| 73 | (group 1.0 point))) | 73 | (group 1.0 point))) |
| 74 | (summary | 74 | (summary |
| @@ -142,7 +142,7 @@ used to display Gnus windows." | |||
| 142 | (pipe | 142 | (pipe |
| 143 | (vertical 1.0 | 143 | (vertical 1.0 |
| 144 | (summary 0.25 point) | 144 | (summary 0.25 point) |
| 145 | (shell-command-buffer-name 1.0))) | 145 | (,shell-command-buffer-name 1.0))) |
| 146 | (bug | 146 | (bug |
| 147 | (vertical 1.0 | 147 | (vertical 1.0 |
| 148 | (if gnus-bug-create-help-buffer '("*Gnus Help Bug*" 0.5)) | 148 | (if gnus-bug-create-help-buffer '("*Gnus Help Bug*" 0.5)) |