Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9284000e
Commit
9284000e
authored
Mar 05, 2014
by
Juanma Barranquero
Browse files
lisp/frameset.el (frameset--initial-params): Filter out null entries.
parent
e1a2cb1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/frameset.el
lisp/frameset.el
+1
-1
No files found.
lisp/ChangeLog
View file @
9284000e
2014-03-05 Juanma Barranquero <lekktu@gmail.com>
* frameset.el (frameset--initial-params): Filter out null entries.
2014-03-05 Martin Rudalics <rudalics@gmx.at>
* window.el (window-min-height, window-min-width): Rewrite
...
...
lisp/frameset.el
View file @
9284000e
...
...
@@ -941,7 +941,7 @@ Setting position and size parameters as soon as possible helps reducing
flickering; other parameters, like `minibuffer' and `border-width', can
not be changed once the frame has been created. Internal use only."
(
cl-loop
for
param
in
'
(
left
top
with
height
border-width
minibuffer
)
collect
(
assq
param
parameters
)))
when
(
assq
param
parameters
)
collect
it
))
(
defun
frameset--restore-frame
(
parameters
window-state
filters
force-onscreen
)
"Set up and return a frame according to its saved state.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment