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
e6841c3b
Commit
e6841c3b
authored
Jun 04, 2008
by
Juanma Barranquero
Browse files
(struct window): Add new member window_parameters.
parent
cfbb2395
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
7 deletions
+18
-7
src/ChangeLog
src/ChangeLog
+14
-5
src/window.h
src/window.h
+4
-2
No files found.
src/ChangeLog
View file @
e6841c3b
2008-06-04 Joakim Verona <joakim@verona.se>
* window.h (struct window): Add new member window_parameters.
* window.c (Fwindow_parameters, Fwindow_parameter)
(Fset_window_parameter): New defuns.
(syms_of_window): Defsubr the new defuns.
(make_window): Initialize window_parameters to nil.
2008-06-04 John Paul Wallington <jpw@pobox.com>
* eval.c (Fdefmacro): Doc fix.
...
...
@@ -73,11 +82,11 @@
2008-06-01 Jason Rumney <jasonr@gnu.org>
* w32font.c (w32_enumfont_pattern_entity): Use requested registry.
Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
Don't add empty script list.
(w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
* w32font.c (w32_enumfont_pattern_entity): Use requested registry.
Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
Don't add empty script list.
(w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
...
...
src/window.h
View file @
e6841c3b
...
...
@@ -224,10 +224,12 @@ struct window
proportionally. */
Lisp_Object
resize_proportionally
;
/* Original window height and top before mini-window was
enlarged. */
/* Original window height and top before mini-window was enlarged. */
Lisp_Object
orig_total_lines
,
orig_top_line
;
/* An alist with parameteres. */
Lisp_Object
window_parameters
;
/* No Lisp data may follow below this point without changing
mark_object in alloc.c. The member current_matrix must be the
first non-Lisp member. */
...
...
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