aboutsummaryrefslogtreecommitdiffstats
path: root/src/intervals.c
diff options
context:
space:
mode:
authorJan D2010-07-02 14:19:53 +0200
committerJan D2010-07-02 14:19:53 +0200
commitf57e2426f0e8a6b251be71b6f62237fd286998ea (patch)
treea8db36e415ea69b4196881b44122454317510f46 /src/intervals.c
parent383e09700c9b3d175c506301d363be4597827db7 (diff)
downloademacs-f57e2426f0e8a6b251be71b6f62237fd286998ea.tar.gz
emacs-f57e2426f0e8a6b251be71b6f62237fd286998ea.zip
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.
Diffstat (limited to 'src/intervals.c')
-rw-r--r--src/intervals.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/intervals.c b/src/intervals.c
index 9836f763489..4f12d711bf5 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -53,8 +53,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
53#define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set)) 53#define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set))
54 54
55Lisp_Object merge_properties_sticky (); 55Lisp_Object merge_properties_sticky ();
56static INTERVAL reproduce_tree P_ ((INTERVAL, INTERVAL)); 56static INTERVAL reproduce_tree (INTERVAL, INTERVAL);
57static INTERVAL reproduce_tree_obj P_ ((INTERVAL, Lisp_Object)); 57static INTERVAL reproduce_tree_obj (INTERVAL, Lisp_Object);
58 58
59/* Utility functions for intervals. */ 59/* Utility functions for intervals. */
60 60
@@ -208,7 +208,7 @@ intervals_equal (i0, i1)
208void 208void
209traverse_intervals_noorder (tree, function, arg) 209traverse_intervals_noorder (tree, function, arg)
210 INTERVAL tree; 210 INTERVAL tree;
211 void (* function) P_ ((INTERVAL, Lisp_Object)); 211 void (* function) (INTERVAL, Lisp_Object);
212 Lisp_Object arg; 212 Lisp_Object arg;
213{ 213{
214 /* Minimize stack usage. */ 214 /* Minimize stack usage. */
@@ -232,7 +232,7 @@ void
232traverse_intervals (tree, position, function, arg) 232traverse_intervals (tree, position, function, arg)
233 INTERVAL tree; 233 INTERVAL tree;
234 int position; 234 int position;
235 void (* function) P_ ((INTERVAL, Lisp_Object)); 235 void (* function) (INTERVAL, Lisp_Object);
236 Lisp_Object arg; 236 Lisp_Object arg;
237{ 237{
238 while (!NULL_INTERVAL_P (tree)) 238 while (!NULL_INTERVAL_P (tree))