diff src/intervals.c @ 109100:2bc9a0c04c87

Remove __P and P_ from .c and .m files and definition of P_ * lisp.h: * atimer.h: Remove define for P_. * alloc.c: Remove __P and P_ from .c and .m files. * atimer.c: * buffer.c: * callint.c: * category.c: * charset.c: * chartab.c: * cm.c: * coding.c: * composite.c: * data.c: * dired.c: * dispnew.c: * doc.c: * editfns.c: * emacs.c: * eval.c: * fileio.c: * filelock.c: * fns.c: * font.c: * fontset.c: * frame.c: * ftfont.c: * ftxfont.c: * gmalloc.c: * gtkutil.c: * image.c: * indent.c: * intervals.c: * keyboard.c: * keymap.c: * lread.c: * marker.c: * menu.c: * minibuf.c: * print.c: * process.c: * scroll.c: * search.c: * sound.c: * strftime.c: * syntax.c: * sysdep.c: * term.c: * terminal.c: * textprop.c: * unexalpha.c: * w32console.c: * w32fns.c: * w32font.c: * w32menu.c: * w32term.c: * w32uniscribe.c: * window.c: * xdisp.c: * xfaces.c: * xfns.c: * xfont.c: * xftfont.c: * xmenu.c: * xselect.c: * xterm.c: Likewise. * ebrowse.c: Remove P_ and __P. * etags.c: * movemail.c: * pop.c: * update-game-score.c: Likewise.
author Jan D <jan.h.d@swipnet.se>
date Fri, 02 Jul 2010 14:19:53 +0200
parents 1d1d5d9bd884
children aec1143e8d85
line wrap: on
line diff
--- a/src/intervals.c	Fri Jul 02 11:26:33 2010 +0200
+++ b/src/intervals.c	Fri Jul 02 14:19:53 2010 +0200
@@ -53,8 +53,8 @@
 #define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set))
 
 Lisp_Object merge_properties_sticky ();
-static INTERVAL reproduce_tree P_ ((INTERVAL, INTERVAL));
-static INTERVAL reproduce_tree_obj P_ ((INTERVAL, Lisp_Object));
+static INTERVAL reproduce_tree (INTERVAL, INTERVAL);
+static INTERVAL reproduce_tree_obj (INTERVAL, Lisp_Object);
 
 /* Utility functions for intervals.  */
 
@@ -208,7 +208,7 @@
 void
 traverse_intervals_noorder (tree, function, arg)
      INTERVAL tree;
-     void (* function) P_ ((INTERVAL, Lisp_Object));
+     void (* function) (INTERVAL, Lisp_Object);
      Lisp_Object arg;
 {
   /* Minimize stack usage.  */
@@ -232,7 +232,7 @@
 traverse_intervals (tree, position, function, arg)
      INTERVAL tree;
      int position;
-     void (* function) P_ ((INTERVAL, Lisp_Object));
+     void (* function) (INTERVAL, Lisp_Object);
      Lisp_Object arg;
 {
   while (!NULL_INTERVAL_P (tree))