aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/xfaces.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c6f973af8c7..1f8e0f6b8e3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename 3 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename
4 or move locals to avoid shadowing. 4 or move locals to avoid shadowing.
5 (tty_defined_color, merge_face_heights): Now static.
5 6
6 * terminal.c (store_terminal_param): Now static. 7 * terminal.c (store_terminal_param): Now static.
7 8
diff --git a/src/xfaces.c b/src/xfaces.c
index d877d8525dd..d463175ed2c 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -1112,7 +1112,7 @@ tty_lookup_color (struct frame *f, Lisp_Object color, XColor *tty_color, XColor
1112 1112
1113/* A version of defined_color for non-X frames. */ 1113/* A version of defined_color for non-X frames. */
1114 1114
1115int 1115static int
1116tty_defined_color (struct frame *f, const char *color_name, 1116tty_defined_color (struct frame *f, const char *color_name,
1117 XColor *color_def, int alloc) 1117 XColor *color_def, int alloc)
1118{ 1118{
@@ -2251,7 +2251,7 @@ set_lface_from_font (struct frame *f, Lisp_Object lface, Lisp_Object font_object
2251 `relative' heights; the returned value is always an absolute height 2251 `relative' heights; the returned value is always an absolute height
2252 unless both FROM and TO are relative. */ 2252 unless both FROM and TO are relative. */
2253 2253
2254Lisp_Object 2254static Lisp_Object
2255merge_face_heights (Lisp_Object from, Lisp_Object to, Lisp_Object invalid) 2255merge_face_heights (Lisp_Object from, Lisp_Object to, Lisp_Object invalid)
2256{ 2256{
2257 Lisp_Object result = invalid; 2257 Lisp_Object result = invalid;