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/regex.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/regex.c')
| -rw-r--r-- | src/regex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regex.c b/src/regex.c index 06a9db2c55c..2363fe2a290 100644 --- a/src/regex.c +++ b/src/regex.c | |||
| @@ -1238,12 +1238,12 @@ re_set_syntax (reg_syntax_t syntax) | |||
| 1238 | WEAK_ALIAS (__re_set_syntax, re_set_syntax) | 1238 | WEAK_ALIAS (__re_set_syntax, re_set_syntax) |
| 1239 | 1239 | ||
| 1240 | /* Regexp to use to replace spaces, or NULL meaning don't. */ | 1240 | /* Regexp to use to replace spaces, or NULL meaning don't. */ |
| 1241 | static re_char *whitespace_regexp; | 1241 | static const_re_char *whitespace_regexp; |
| 1242 | 1242 | ||
| 1243 | void | 1243 | void |
| 1244 | re_set_whitespace_regexp (const char *regexp) | 1244 | re_set_whitespace_regexp (const char *regexp) |
| 1245 | { | 1245 | { |
| 1246 | whitespace_regexp = (re_char *) regexp; | 1246 | whitespace_regexp = (const_re_char *) regexp; |
| 1247 | } | 1247 | } |
| 1248 | WEAK_ALIAS (__re_set_syntax, re_set_syntax) | 1248 | WEAK_ALIAS (__re_set_syntax, re_set_syntax) |
| 1249 | 1249 | ||