diff options
| author | Paul Eggert | 2013-08-26 14:31:50 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-08-26 14:31:50 -0700 |
| commit | f462f0750f4cd3537ab1da5cf8ed64e08e55ea46 (patch) | |
| tree | 8bc31880fcaa044d09553dea12cbb846fda22b33 /src/xgselect.c | |
| parent | 068f9124b4cb785f1743f2b50884f819d9d34f47 (diff) | |
| download | emacs-f462f0750f4cd3537ab1da5cf8ed64e08e55ea46.tar.gz emacs-f462f0750f4cd3537ab1da5cf8ed64e08e55ea46.zip | |
Fix minor problems found by static checking.
* image.c (XGetPixel, XPutPixel) [HAVE_NS]: Now static.
(expect): Avoid nested-if warning.
(x_build_heuristic_mask) [HAVE_NS]: Avoid unused-var warning.
* nsmenu.m (fillWithWidgetValue:): Avoid type warning.
* nsterm.h, nsterm.m (ns_select):
* xgselect.c, xgselect.h (xg_select):
Adjust signature to better match pselect's.
* nsterm.m (ns_select):
Don't set *TIMEOUT, since pselect doesn't.
* regex.c (whitespace_regexp): Now const_re_char *, to avoid
diagnostic about assigning const char * to it.
* xfaces.c (x_display_info) [HAVE_NS]: Remove; unused.
Diffstat (limited to 'src/xgselect.c')
| -rw-r--r-- | src/xgselect.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xgselect.c b/src/xgselect.c index 4d90298a9d9..97f53373b63 100644 --- a/src/xgselect.c +++ b/src/xgselect.c | |||
| @@ -29,10 +29,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 29 | 29 | ||
| 30 | int | 30 | int |
| 31 | xg_select (int fds_lim, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds, | 31 | xg_select (int fds_lim, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds, |
| 32 | EMACS_TIME *timeout, sigset_t *sigmask) | 32 | EMACS_TIME const *timeout, sigset_t const *sigmask) |
| 33 | { | 33 | { |
| 34 | SELECT_TYPE all_rfds, all_wfds; | 34 | SELECT_TYPE all_rfds, all_wfds; |
| 35 | EMACS_TIME tmo, *tmop = timeout; | 35 | EMACS_TIME tmo; |
| 36 | EMACS_TIME const *tmop = timeout; | ||
| 36 | 37 | ||
| 37 | GMainContext *context; | 38 | GMainContext *context; |
| 38 | int have_wfds = wfds != NULL; | 39 | int have_wfds = wfds != NULL; |