Fix last set of Nextstep changes.

* nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
* nsterm.h: Fix prototype.
This commit is contained in:
Chong Yidong 2010-03-31 10:27:50 -04:00
parent 7a1831cf75
commit 95b1abcfaf
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2010-03-31 Chong Yidong <cyd@stupidchicken.com>
* nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
* nsterm.h: Fix prototype.
2010-03-31 Eli Zaretskii <eliz@gnu.org>
* w32fns.c (x_create_tip_frame): Copy `parms' before we modify it

View file

@ -686,7 +686,7 @@ Turn the input menu (an NSMenu) into a lisp list for tracking on lisp side
void
ns_set_doc_edited (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
ns_set_doc_edited (struct frame *f, Lisp_Object arg)
{
NSView *view = FRAME_NS_VIEW (f);
NSAutoreleasePool *pool;

View file

@ -709,7 +709,7 @@ extern int ns_lisp_to_cursor_type ();
extern Lisp_Object ns_cursor_type_to_lisp (int arg);
extern Lisp_Object Qnone;
extern void ns_set_name_as_filename (struct frame *f);
extern void ns_set_doc_edited (struct frame *f, Lisp_Object arg, Lisp_Object oldval);
extern void ns_set_doc_edited (struct frame *f, Lisp_Object arg);
extern int
ns_defined_color (struct frame *f, char *name, XColor *color_def, int alloc,