diff options
| author | Noam Postavsky | 2017-07-07 18:13:15 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2017-07-07 18:13:15 -0400 |
| commit | c819c053ad12a58321bbd6fd45aa2697a9dfc78d (patch) | |
| tree | 27e65f98f6ba24dfed842d84ed101800cf42bbb5 | |
| parent | 2fcdb953634909703dbbc99269782c09df971505 (diff) | |
| download | emacs-c819c053ad12a58321bbd6fd45aa2697a9dfc78d.tar.gz emacs-c819c053ad12a58321bbd6fd45aa2697a9dfc78d.zip | |
; Fix extra "," in previous commit
| -rw-r--r-- | lisp/wid-edit.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index a1b8ed28cae..6687bec31f6 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el | |||
| @@ -3694,7 +3694,7 @@ example: | |||
| 3694 | (defun widget-color--choose-action (widget &optional _event) | 3694 | (defun widget-color--choose-action (widget &optional _event) |
| 3695 | (list-colors-display | 3695 | (list-colors-display |
| 3696 | nil nil | 3696 | nil nil |
| 3697 | (let ((cbuf ,(current-buffer)) | 3697 | (let ((cbuf (current-buffer)) |
| 3698 | (wp (widget-get widget :parent))) | 3698 | (wp (widget-get widget :parent))) |
| 3699 | (lambda (color) | 3699 | (lambda (color) |
| 3700 | (when (buffer-live-p cbuf) | 3700 | (when (buffer-live-p cbuf) |