diff options
| author | Juri Linkov | 2010-05-19 23:37:57 +0300 |
|---|---|---|
| committer | Juri Linkov | 2010-05-19 23:37:57 +0300 |
| commit | 7bce851099c56c9aa40ff3f37f929c786995e434 (patch) | |
| tree | 73f40550286e3af415d4ed6655c5884089950872 | |
| parent | a7723e050fc719e94af39790067cf47c5d0dceec (diff) | |
| download | emacs-7bce851099c56c9aa40ff3f37f929c786995e434.tar.gz emacs-7bce851099c56c9aa40ff3f37f929c786995e434.zip | |
* emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
set-window-parameter.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c6c0339e150..c1c1a1faef8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-05-19 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with | ||
| 4 | set-window-parameter. | ||
| 5 | |||
| 1 | 2010-05-19 Michael Albinus <michael.albinus@gmx.de> | 6 | 2010-05-19 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute | 8 | * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute |
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 57870b19066..444178edb0c 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el | |||
| @@ -1813,6 +1813,7 @@ Example: | |||
| 1813 | (defsetf window-height () (store) | 1813 | (defsetf window-height () (store) |
| 1814 | (list 'progn (list 'enlarge-window (list '- store '(window-height))) store)) | 1814 | (list 'progn (list 'enlarge-window (list '- store '(window-height))) store)) |
| 1815 | (defsetf window-hscroll set-window-hscroll) | 1815 | (defsetf window-hscroll set-window-hscroll) |
| 1816 | (defsetf window-parameter set-window-parameter) | ||
| 1816 | (defsetf window-point set-window-point) | 1817 | (defsetf window-point set-window-point) |
| 1817 | (defsetf window-start set-window-start) | 1818 | (defsetf window-start set-window-start) |
| 1818 | (defsetf window-width () (store) | 1819 | (defsetf window-width () (store) |