diff options
| author | Paul Eggert | 2011-08-13 22:28:42 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-08-13 22:28:42 -0700 |
| commit | 19d5c50cbb7d65bfed9e76ccf1c22bada0662f38 (patch) | |
| tree | cb7711e8390a895458121e8a1601616b26b99f59 /src | |
| parent | 0a0d27fb459359d9ff04e0c08a1ac2bc6406b8b4 (diff) | |
| download | emacs-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/ChangeLog | 3 | ||||
| -rw-r--r-- | src/dispextern.h | 1 | ||||
| -rw-r--r-- | src/xfaces.c | 2 |
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 @@ | |||
| 1 | 2011-08-14 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-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 | ||
| 5 | 2011-08-13 Jan Djärv <jan.h.d@swipnet.se> | 8 | 2011-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); | |||
| 3202 | int compute_char_face (struct frame *, int, Lisp_Object); | 3202 | int compute_char_face (struct frame *, int, Lisp_Object); |
| 3203 | void free_all_realized_faces (Lisp_Object); | 3203 | void free_all_realized_faces (Lisp_Object); |
| 3204 | extern Lisp_Object Qforeground_color, Qbackground_color; | 3204 | extern Lisp_Object Qforeground_color, Qbackground_color; |
| 3205 | extern Lisp_Object Qframe_set_background_mode; | ||
| 3206 | extern char unspecified_fg[], unspecified_bg[]; | 3205 | extern 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 | ||
| 342 | Lisp_Object Qframe_set_background_mode; | 342 | static Lisp_Object Qframe_set_background_mode; |
| 343 | 343 | ||
| 344 | /* Names of basic faces. */ | 344 | /* Names of basic faces. */ |
| 345 | 345 | ||