Fix last set of Nextstep changes.
authorChong Yidong <cyd@stupidchicken.com>
Wed, 31 Mar 2010 14:27:50 +0000 (10:27 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 31 Mar 2010 14:27:50 +0000 (10:27 -0400)
* nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
* nsterm.h: Fix prototype.

src/ChangeLog
src/nsfns.m
src/nsterm.h

index e557106..e8243cf 100644 (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
index 9de7681..7e7fd48 100644 (file)
@@ -686,7 +686,7 @@ ns_set_name_as_filename (struct frame *f)
 
 
 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;
index 10d1695..01086e6 100644 (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,