diff options
| author | Paul Eggert | 2011-02-05 02:20:15 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-05 02:20:15 -0800 |
| commit | 25a48bd06bd5979d201cddde99e2dec1eb54c184 (patch) | |
| tree | aef22df016ceb89400520afb0a2a323ec9dc43f1 /src/dispextern.h | |
| parent | d154c079dd429eb5b641139152e7714bfddca519 (diff) | |
| download | emacs-25a48bd06bd5979d201cddde99e2dec1eb54c184.tar.gz emacs-25a48bd06bd5979d201cddde99e2dec1eb54c184.zip | |
xstrcasecmp: conform to C89 pointer rules
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 26e0bb61f17..6d54ebefd84 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -3151,7 +3151,7 @@ char *choose_face_font (struct frame *, Lisp_Object *, Lisp_Object, | |||
| 3151 | int *); | 3151 | int *); |
| 3152 | int ascii_face_of_lisp_face (struct frame *, int); | 3152 | int ascii_face_of_lisp_face (struct frame *, int); |
| 3153 | void prepare_face_for_display (struct frame *, struct face *); | 3153 | void prepare_face_for_display (struct frame *, struct face *); |
| 3154 | int xstrcasecmp (const unsigned char *, const unsigned char *); | 3154 | int xstrcasecmp (const char *, const char *); |
| 3155 | int lookup_named_face (struct frame *, Lisp_Object, int); | 3155 | int lookup_named_face (struct frame *, Lisp_Object, int); |
| 3156 | int lookup_basic_face (struct frame *, int); | 3156 | int lookup_basic_face (struct frame *, int); |
| 3157 | int smaller_face (struct frame *, int, int); | 3157 | int smaller_face (struct frame *, int, int); |
| @@ -3361,4 +3361,3 @@ extern Lisp_Object x_default_parameter (struct frame *, Lisp_Object, | |||
| 3361 | #endif /* HAVE_WINDOW_SYSTEM */ | 3361 | #endif /* HAVE_WINDOW_SYSTEM */ |
| 3362 | 3362 | ||
| 3363 | #endif /* not DISPEXTERN_H_INCLUDED */ | 3363 | #endif /* not DISPEXTERN_H_INCLUDED */ |
| 3364 | |||