diff options
| author | Stefan Monnier | 2008-07-17 03:33:59 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-07-17 03:33:59 +0000 |
| commit | facfbbbdad272decb23553d827fbc2c0fabaf078 (patch) | |
| tree | 14d37d409d30bdec0cbfc0ed79593021e1e88ab2 /src/frame.h | |
| parent | d377ef4a3f6c77c451b647305436d1e8bf914b07 (diff) | |
| download | emacs-facfbbbdad272decb23553d827fbc2c0fabaf078.tar.gz emacs-facfbbbdad272decb23553d827fbc2c0fabaf078.zip | |
* Makefile.in: Undef LIB_STANDARD before defining it to silence warning
in case it was defined already.
USE @GNUSTEP_MAKEFILES@ rather than envvars.
* nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
ns_default.
(applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
Lisp_Objects.
* nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
(ns_defined_color, ns_color_to_lisp): Declare.
* nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
(Fns_own_selection_internal): Make the big ugly hack more explicit, so
it's accepted even with USE_LISP_UNION_TYPE.
* nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
(update_frame_tool_bar): Remove apparently obsolete tests for
non-integerness of f->tool_bar_lines.
(windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
* nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
(nsfont_open): Don't confuse NULL for Qnil.
* nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
* menu.h (find_and_call_menu_selection):
* menu.c (find_and_call_menu_selection): Use just int for vector size.
(find_and_return_menu_selection): Always return something.
* frame.h: Include dispextern.h for Display_Info.
(display_x_get_resource): Declare.
* configure.in: Extract and substitute GNUSTEP_MAKEFILES.
Diffstat (limited to 'src/frame.h')
| -rw-r--r-- | src/frame.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h index b744c9e56b6..d070feeaef8 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -24,6 +24,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 24 | #ifndef EMACS_FRAME_H | 24 | #ifndef EMACS_FRAME_H |
| 25 | #define EMACS_FRAME_H | 25 | #define EMACS_FRAME_H |
| 26 | 26 | ||
| 27 | #include "dispextern.h" | ||
| 28 | |||
| 27 | 29 | ||
| 28 | /* Miscellanea. */ | 30 | /* Miscellanea. */ |
| 29 | 31 | ||
| @@ -1114,6 +1116,13 @@ extern void x_set_alpha P_ ((struct frame *, Lisp_Object, Lisp_Object)); | |||
| 1114 | 1116 | ||
| 1115 | extern void validate_x_resource_name P_ ((void)); | 1117 | extern void validate_x_resource_name P_ ((void)); |
| 1116 | 1118 | ||
| 1119 | extern Lisp_Object display_x_get_resource (Display_Info *, | ||
| 1120 | Lisp_Object attribute, | ||
| 1121 | Lisp_Object class, | ||
| 1122 | Lisp_Object component, | ||
| 1123 | Lisp_Object subclass); | ||
| 1124 | |||
| 1125 | |||
| 1117 | #endif /* HAVE_WINDOW_SYSTEM */ | 1126 | #endif /* HAVE_WINDOW_SYSTEM */ |
| 1118 | 1127 | ||
| 1119 | #endif /* not EMACS_FRAME_H */ | 1128 | #endif /* not EMACS_FRAME_H */ |