diff options
| author | Jan D | 2010-07-02 14:19:53 +0200 |
|---|---|---|
| committer | Jan D | 2010-07-02 14:19:53 +0200 |
| commit | f57e2426f0e8a6b251be71b6f62237fd286998ea (patch) | |
| tree | a8db36e415ea69b4196881b44122454317510f46 /src/fontset.c | |
| parent | 383e09700c9b3d175c506301d363be4597827db7 (diff) | |
| download | emacs-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/fontset.c')
| -rw-r--r-- | src/fontset.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/fontset.c b/src/fontset.c index e4fd9d72780..84035838552 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -203,23 +203,23 @@ Lisp_Object Vvertical_centering_font_regexp; | |||
| 203 | Lisp_Object Votf_script_alist; | 203 | Lisp_Object Votf_script_alist; |
| 204 | 204 | ||
| 205 | /* Check if any window system is used now. */ | 205 | /* Check if any window system is used now. */ |
| 206 | void (*check_window_system_func) P_ ((void)); | 206 | void (*check_window_system_func) (void); |
| 207 | 207 | ||
| 208 | 208 | ||
| 209 | /* Prototype declarations for static functions. */ | 209 | /* Prototype declarations for static functions. */ |
| 210 | static Lisp_Object fontset_add P_ ((Lisp_Object, Lisp_Object, Lisp_Object, | 210 | static Lisp_Object fontset_add (Lisp_Object, Lisp_Object, Lisp_Object, |
| 211 | Lisp_Object)); | 211 | Lisp_Object); |
| 212 | static Lisp_Object fontset_find_font P_ ((Lisp_Object, int, struct face *, | 212 | static Lisp_Object fontset_find_font (Lisp_Object, int, struct face *, |
| 213 | int, int)); | 213 | int, int); |
| 214 | static void reorder_font_vector P_ ((Lisp_Object, struct font *)); | 214 | static void reorder_font_vector (Lisp_Object, struct font *); |
| 215 | static Lisp_Object fontset_font P_ ((Lisp_Object, int, struct face *, int)); | 215 | static Lisp_Object fontset_font (Lisp_Object, int, struct face *, int); |
| 216 | static Lisp_Object make_fontset P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); | 216 | static Lisp_Object make_fontset (Lisp_Object, Lisp_Object, Lisp_Object); |
| 217 | static Lisp_Object fontset_pattern_regexp P_ ((Lisp_Object)); | 217 | static Lisp_Object fontset_pattern_regexp (Lisp_Object); |
| 218 | static void accumulate_script_ranges P_ ((Lisp_Object, Lisp_Object, | 218 | static void accumulate_script_ranges (Lisp_Object, Lisp_Object, |
| 219 | Lisp_Object)); | 219 | Lisp_Object); |
| 220 | Lisp_Object find_font_encoding P_ ((Lisp_Object)); | 220 | Lisp_Object find_font_encoding (Lisp_Object); |
| 221 | 221 | ||
| 222 | static void set_fontset_font P_ ((Lisp_Object, Lisp_Object)); | 222 | static void set_fontset_font (Lisp_Object, Lisp_Object); |
| 223 | 223 | ||
| 224 | #ifdef FONTSET_DEBUG | 224 | #ifdef FONTSET_DEBUG |
| 225 | 225 | ||
| @@ -1440,7 +1440,7 @@ set_fontset_font (arg, range) | |||
| 1440 | } | 1440 | } |
| 1441 | 1441 | ||
| 1442 | extern Lisp_Object QCfamily, QCregistry; | 1442 | extern Lisp_Object QCfamily, QCregistry; |
| 1443 | static void update_auto_fontset_alist P_ ((Lisp_Object, Lisp_Object)); | 1443 | static void update_auto_fontset_alist (Lisp_Object, Lisp_Object); |
| 1444 | 1444 | ||
| 1445 | 1445 | ||
| 1446 | DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 5, 0, | 1446 | DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 5, 0, |