diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-02-18 18:16:37 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-02-18 18:17:03 -0800 |
commit | b2a83eed23d540b4b0ab9e0bf5605821011bfd7d (patch) | |
tree | 20545c597c19d213252bcdba7076a807ec633867 /src/nsterm.h | |
parent | 7f89c208bf4bb256c67cc59351f4171c7a6b63aa (diff) | |
download | emacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.tar.gz |
Use 'char *FOO' instead of 'char* FOO'
Diffstat (limited to 'src/nsterm.h')
-rw-r--r-- | src/nsterm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nsterm.h b/src/nsterm.h index 534ec68c22b..53d9344cc78 100644 --- a/src/nsterm.h +++ b/src/nsterm.h @@ -53,7 +53,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ /* CGFloat on GNUstep may be 4 or 8 byte, but functions expect float* for some versions. - On Cocoa >= 10.5, functions expect CGFloat*. Make compatible type. */ + On Cocoa >= 10.5, functions expect CGFloat *. Make compatible type. */ #ifdef NS_IMPL_COCOA typedef CGFloat EmacsCGFloat; #elif GNUSTEP_GUI_MAJOR_VERSION > 0 || GNUSTEP_GUI_MINOR_VERSION >= 22 @@ -1198,7 +1198,7 @@ extern void ns_finish_events (void); #ifdef __OBJC__ /* Needed in nsfns.m. */ extern void -ns_set_represented_filename (NSString* fstr, struct frame *f); +ns_set_represented_filename (NSString *fstr, struct frame *f); #endif |