diff options
| author | Juanma Barranquero | 2014-03-24 21:01:21 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2014-03-24 21:01:21 +0100 |
| commit | c3561529d2770facf82d146c6dbd2378db13d383 (patch) | |
| tree | e3cd5e13c4d06256fbf598aee9cd6b2f43548cff | |
| parent | 74be16492f8ef62f57c1ede79a08ddebc6847091 (diff) | |
| download | emacs-c3561529d2770facf82d146c6dbd2378db13d383.tar.gz emacs-c3561529d2770facf82d146c6dbd2378db13d383.zip | |
lisp/frameset.el (frameset--initial-params): Fix typo in parameter name.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/frameset.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3f72f421773..c956b0bdea1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-03-24 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * frameset.el (frameset--initial-params): Fix typo in parameter name. | ||
| 4 | |||
| 1 | 2014-03-24 Nicolas Richard <theonewiththeevillook@yahoo.fr> | 5 | 2014-03-24 Nicolas Richard <theonewiththeevillook@yahoo.fr> |
| 2 | 6 | ||
| 3 | * align.el (align-region): Do not fail when end-mark is nil (bug#17088). | 7 | * align.el (align-region): Do not fail when end-mark is nil (bug#17088). |
diff --git a/lisp/frameset.el b/lisp/frameset.el index 50055bb2782..c1a7ecc16b8 100644 --- a/lisp/frameset.el +++ b/lisp/frameset.el | |||
| @@ -940,7 +940,7 @@ is the parameter alist of the frame being restored. Internal use only." | |||
| 940 | Setting position and size parameters as soon as possible helps reducing | 940 | Setting position and size parameters as soon as possible helps reducing |
| 941 | flickering; other parameters, like `minibuffer' and `border-width', can | 941 | flickering; other parameters, like `minibuffer' and `border-width', can |
| 942 | not be changed once the frame has been created. Internal use only." | 942 | not be changed once the frame has been created. Internal use only." |
| 943 | (cl-loop for param in '(left top with height border-width minibuffer) | 943 | (cl-loop for param in '(left top width height border-width minibuffer) |
| 944 | when (assq param parameters) collect it)) | 944 | when (assq param parameters) collect it)) |
| 945 | 945 | ||
| 946 | (defun frameset--restore-frame (parameters window-state filters force-onscreen) | 946 | (defun frameset--restore-frame (parameters window-state filters force-onscreen) |