diff options
| author | Luc Teirlinck | 2004-07-23 12:20:22 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-07-23 12:20:22 +0000 |
| commit | d398de43be1a0a9197b2eef624fd4e2e7ae1e762 (patch) | |
| tree | 0fa07a1253cef214fd597faa7b8ed92ac9eef4bd | |
| parent | 55c4a67ca8fe8e5ffd67b70bdb7d278bc99c84ea (diff) | |
| download | emacs-d398de43be1a0a9197b2eef624fd4e2e7ae1e762.tar.gz emacs-d398de43be1a0a9197b2eef624fd4e2e7ae1e762.zip | |
(modify-all-frames-parameters): Minor doc fix.
(set-frame-configuration): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/frame.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 92246d2f95c..866a88eb30e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-07-23 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * frame.el (modify-all-frames-parameters): Minor doc fix. | ||
| 4 | |||
| 1 | 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change) | 5 | 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change) |
| 2 | 6 | ||
| 3 | * simple.el (completion-setup-function): Compute the common parts | 7 | * simple.el (completion-setup-function): Compute the common parts |
diff --git a/lisp/frame.el b/lisp/frame.el index 521938cfc18..bd63f9f46d1 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -520,7 +520,7 @@ React to settings of `default-frame-alist', `initial-frame-alist' there." | |||
| 520 | ;;;; Creation of additional frames, and other frame miscellanea | 520 | ;;;; Creation of additional frames, and other frame miscellanea |
| 521 | 521 | ||
| 522 | (defun modify-all-frames-parameters (alist) | 522 | (defun modify-all-frames-parameters (alist) |
| 523 | "Modify all current and future frames parameters according to ALIST. | 523 | "Modify all current and future frames' parameters according to ALIST. |
| 524 | This changes `default-frame-alist' and possibly `initial-frame-alist'. | 524 | This changes `default-frame-alist' and possibly `initial-frame-alist'. |
| 525 | See help of `modify-frame-parameters' for more information." | 525 | See help of `modify-frame-parameters' for more information." |
| 526 | (let (element) ;; temp | 526 | (let (element) ;; temp |
| @@ -789,6 +789,8 @@ where | |||
| 789 | "Restore the frames to the state described by CONFIGURATION. | 789 | "Restore the frames to the state described by CONFIGURATION. |
| 790 | Each frame listed in CONFIGURATION has its position, size, window | 790 | Each frame listed in CONFIGURATION has its position, size, window |
| 791 | configuration, and other parameters set as specified in CONFIGURATION. | 791 | configuration, and other parameters set as specified in CONFIGURATION. |
| 792 | However, this function does not restore deleted frames. | ||
| 793 | |||
| 792 | Ordinarily, this function deletes all existing frames not | 794 | Ordinarily, this function deletes all existing frames not |
| 793 | listed in CONFIGURATION. But if optional second argument NODELETE | 795 | listed in CONFIGURATION. But if optional second argument NODELETE |
| 794 | is given and non-nil, the unwanted frames are iconified instead." | 796 | is given and non-nil, the unwanted frames are iconified instead." |