mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
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.
This commit is contained in:
parent
383e09700c
commit
f57e2426f0
76 changed files with 1632 additions and 1561 deletions
|
|
@ -479,62 +479,62 @@ struct search_path *search_path_tail;
|
|||
|
||||
/* Function prototypes. */
|
||||
|
||||
int yylex P_ ((void));
|
||||
void yyparse P_ ((void));
|
||||
void re_init_parser P_ ((void));
|
||||
char *token_string P_ ((int));
|
||||
char *matching_regexp P_ ((void));
|
||||
void init_sym P_ ((void));
|
||||
struct sym *add_sym P_ ((char *, struct sym *));
|
||||
void add_link P_ ((struct sym *, struct sym *));
|
||||
void add_member_defn P_ ((struct sym *, char *, char *,
|
||||
int, unsigned, int, int, int));
|
||||
void add_member_decl P_ ((struct sym *, char *, char *, int,
|
||||
unsigned, int, int, int, int));
|
||||
void dump_roots P_ ((FILE *));
|
||||
void *xmalloc P_ ((int));
|
||||
void xfree P_ ((void *));
|
||||
void add_global_defn P_ ((char *, char *, int, unsigned, int, int, int));
|
||||
void add_global_decl P_ ((char *, char *, int, unsigned, int, int, int));
|
||||
void add_define P_ ((char *, char *, int));
|
||||
void mark_inherited_virtual P_ ((void));
|
||||
void leave_namespace P_ ((void));
|
||||
void enter_namespace P_ ((char *));
|
||||
void register_namespace_alias P_ ((char *, struct link *));
|
||||
void insert_keyword P_ ((char *, int));
|
||||
void re_init_scanner P_ ((void));
|
||||
void init_scanner P_ ((void));
|
||||
void usage P_ ((int));
|
||||
void version P_ ((void));
|
||||
void process_file P_ ((char *));
|
||||
void add_search_path P_ ((char *));
|
||||
FILE *open_file P_ ((char *));
|
||||
int process_pp_line P_ ((void));
|
||||
int dump_members P_ ((FILE *, struct member *));
|
||||
void dump_sym P_ ((FILE *, struct sym *));
|
||||
int dump_tree P_ ((FILE *, struct sym *));
|
||||
struct member *find_member P_ ((struct sym *, char *, int, int, unsigned));
|
||||
struct member *add_member P_ ((struct sym *, char *, int, int, unsigned));
|
||||
void mark_virtual P_ ((struct sym *));
|
||||
void mark_virtual P_ ((struct sym *));
|
||||
struct sym *make_namespace P_ ((char *, struct sym *));
|
||||
char *sym_scope P_ ((struct sym *));
|
||||
char *sym_scope_1 P_ ((struct sym *));
|
||||
int skip_to P_ ((int));
|
||||
void skip_matching P_ ((void));
|
||||
void member P_ ((struct sym *, int));
|
||||
void class_body P_ ((struct sym *, int));
|
||||
void class_definition P_ ((struct sym *, int, int, int));
|
||||
void declaration P_ ((int));
|
||||
unsigned parm_list P_ ((int *));
|
||||
char *operator_name P_ ((int *));
|
||||
struct sym *parse_classname P_ ((void));
|
||||
struct sym *parse_qualified_ident_or_type P_ ((char **));
|
||||
void parse_qualified_param_ident_or_type P_ ((char **));
|
||||
int globals P_ ((int));
|
||||
void yyerror P_ ((char *, char *));
|
||||
void usage P_ ((int)) NO_RETURN;
|
||||
void version P_ (()) NO_RETURN;
|
||||
int yylex (void);
|
||||
void yyparse (void);
|
||||
void re_init_parser (void);
|
||||
char *token_string (int);
|
||||
char *matching_regexp (void);
|
||||
void init_sym (void);
|
||||
struct sym *add_sym (char *, struct sym *);
|
||||
void add_link (struct sym *, struct sym *);
|
||||
void add_member_defn (struct sym *, char *, char *,
|
||||
int, unsigned, int, int, int);
|
||||
void add_member_decl (struct sym *, char *, char *, int,
|
||||
unsigned, int, int, int, int);
|
||||
void dump_roots (FILE *);
|
||||
void *xmalloc (int);
|
||||
void xfree (void *);
|
||||
void add_global_defn (char *, char *, int, unsigned, int, int, int);
|
||||
void add_global_decl (char *, char *, int, unsigned, int, int, int);
|
||||
void add_define (char *, char *, int);
|
||||
void mark_inherited_virtual (void);
|
||||
void leave_namespace (void);
|
||||
void enter_namespace (char *);
|
||||
void register_namespace_alias (char *, struct link *);
|
||||
void insert_keyword (char *, int);
|
||||
void re_init_scanner (void);
|
||||
void init_scanner (void);
|
||||
void usage (int);
|
||||
void version (void);
|
||||
void process_file (char *);
|
||||
void add_search_path (char *);
|
||||
FILE *open_file (char *);
|
||||
int process_pp_line (void);
|
||||
int dump_members (FILE *, struct member *);
|
||||
void dump_sym (FILE *, struct sym *);
|
||||
int dump_tree (FILE *, struct sym *);
|
||||
struct member *find_member (struct sym *, char *, int, int, unsigned);
|
||||
struct member *add_member (struct sym *, char *, int, int, unsigned);
|
||||
void mark_virtual (struct sym *);
|
||||
void mark_virtual (struct sym *);
|
||||
struct sym *make_namespace (char *, struct sym *);
|
||||
char *sym_scope (struct sym *);
|
||||
char *sym_scope_1 (struct sym *);
|
||||
int skip_to (int);
|
||||
void skip_matching (void);
|
||||
void member (struct sym *, int);
|
||||
void class_body (struct sym *, int);
|
||||
void class_definition (struct sym *, int, int, int);
|
||||
void declaration (int);
|
||||
unsigned parm_list (int *);
|
||||
char *operator_name (int *);
|
||||
struct sym *parse_classname (void);
|
||||
struct sym *parse_qualified_ident_or_type (char **);
|
||||
void parse_qualified_param_ident_or_type (char **);
|
||||
int globals (int);
|
||||
void yyerror (char *, char *);
|
||||
void usage (int) NO_RETURN;
|
||||
void version () NO_RETURN;
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue