aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-08-13 22:28:42 -0700
committerPaul Eggert2011-08-13 22:28:42 -0700
commit19d5c50cbb7d65bfed9e76ccf1c22bada0662f38 (patch)
treecb7711e8390a895458121e8a1601616b26b99f59 /src
parent0a0d27fb459359d9ff04e0c08a1ac2bc6406b8b4 (diff)
downloademacs-19d5c50cbb7d65bfed9e76ccf1c22bada0662f38.tar.gz
emacs-19d5c50cbb7d65bfed9e76ccf1c22bada0662f38.zip
* xfaces.c (Qframe_set_background_mode): Now static.
* dispextern.h (Qframe_set_background_mode): Remove decl.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/dispextern.h1
-rw-r--r--src/xfaces.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0f77f9af8c1..1e18ffd5d6b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12011-08-14 Paul Eggert <eggert@cs.ucla.edu> 12011-08-14 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * xfaces.c (Qframe_set_background_mode): Now static.
4 * dispextern.h (Qframe_set_background_mode): Remove decl.
5
3 * process.c (Fnetwork_interface_info): Declare local only if needed. 6 * process.c (Fnetwork_interface_info): Declare local only if needed.
4 7
52011-08-13 Jan Djärv <jan.h.d@swipnet.se> 82011-08-13 Jan Djärv <jan.h.d@swipnet.se>
diff --git a/src/dispextern.h b/src/dispextern.h
index ea4b11baa74..9bd43c5255b 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -3202,7 +3202,6 @@ int merge_faces (struct frame *, Lisp_Object, EMACS_INT, int);
3202int compute_char_face (struct frame *, int, Lisp_Object); 3202int compute_char_face (struct frame *, int, Lisp_Object);
3203void free_all_realized_faces (Lisp_Object); 3203void free_all_realized_faces (Lisp_Object);
3204extern Lisp_Object Qforeground_color, Qbackground_color; 3204extern Lisp_Object Qforeground_color, Qbackground_color;
3205extern Lisp_Object Qframe_set_background_mode;
3206extern char unspecified_fg[], unspecified_bg[]; 3205extern char unspecified_fg[], unspecified_bg[];
3207 3206
3208/* Defined in xfns.c */ 3207/* Defined in xfns.c */
diff --git a/src/xfaces.c b/src/xfaces.c
index 52b125b42e6..063cb1b11c2 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -339,7 +339,7 @@ char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg";
339/* The name of the function to call when the background of the frame 339/* The name of the function to call when the background of the frame
340 has changed, frame_set_background_mode. */ 340 has changed, frame_set_background_mode. */
341 341
342Lisp_Object Qframe_set_background_mode; 342static Lisp_Object Qframe_set_background_mode;
343 343
344/* Names of basic faces. */ 344/* Names of basic faces. */
345 345