aboutsummaryrefslogtreecommitdiffstats
path: root/src/composite.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/composite.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/composite.c')
-rw-r--r--src/composite.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/composite.c b/src/composite.c
index cab57e824a9..6b2fe6a6522 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -651,9 +651,9 @@ compose_text (start, end, components, modification_func, string)
651} 651}
652 652
653 653
654static Lisp_Object autocmp_chars P_ ((Lisp_Object, EMACS_INT, EMACS_INT, 654static Lisp_Object autocmp_chars (Lisp_Object, EMACS_INT, EMACS_INT,
655 EMACS_INT, struct window *, 655 EMACS_INT, struct window *,
656 struct face *, Lisp_Object)); 656 struct face *, Lisp_Object);
657 657
658 658
659/* Lisp glyph-string handlers */ 659/* Lisp glyph-string handlers */
@@ -664,7 +664,7 @@ static Lisp_Object autocmp_chars P_ ((Lisp_Object, EMACS_INT, EMACS_INT,
664 664
665static Lisp_Object gstring_hash_table; 665static Lisp_Object gstring_hash_table;
666 666
667static Lisp_Object gstring_lookup_cache P_ ((Lisp_Object)); 667static Lisp_Object gstring_lookup_cache (Lisp_Object);
668 668
669static Lisp_Object 669static Lisp_Object
670gstring_lookup_cache (header) 670gstring_lookup_cache (header)
@@ -715,9 +715,9 @@ composition_gstring_from_id (id)
715 return HASH_VALUE (h, id); 715 return HASH_VALUE (h, id);
716} 716}
717 717
718static Lisp_Object fill_gstring_header P_ ((Lisp_Object, Lisp_Object, 718static Lisp_Object fill_gstring_header (Lisp_Object, Lisp_Object,
719 Lisp_Object, Lisp_Object, 719 Lisp_Object, Lisp_Object,
720 Lisp_Object)); 720 Lisp_Object);
721 721
722int 722int
723composition_gstring_p (gstring) 723composition_gstring_p (gstring)
@@ -869,7 +869,7 @@ fill_gstring_header (header, start, end, font_object, string)
869 return header; 869 return header;
870} 870}
871 871
872extern void font_fill_lglyph_metrics P_ ((Lisp_Object, Lisp_Object)); 872extern void font_fill_lglyph_metrics (Lisp_Object, Lisp_Object);
873 873
874static void 874static void
875fill_gstring_body (gstring) 875fill_gstring_body (gstring)