From: Thien-Thi Nguyen Date: Wed, 12 May 2004 21:32:18 +0000 (+0000) Subject: [VMS] (parse_qualified_param_ident_or_type): X-Git-Tag: ttn-vms-21-2-B2~29 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dd3badb005f31ca366fd0366d0123eb5967d35d2;p=emacs.git [VMS] (parse_qualified_param_ident_or_type): Redefine name to be shorter using pre-processor macro. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 04b20aec7a9..0d61f8089cb 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,8 @@ +2004-05-12 Thien-Thi Nguyen + + * ebrowse.c [VMS] (parse_qualified_param_ident_or_type): + Redefine name to be shorter using pre-processor macro. + 2004-05-12 Thien-Thi Nguyen * cvtmail.c (malloc, realloc): Declarations deleted. diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 36a3c02d5d9..e07fb91a253 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -526,6 +526,9 @@ 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 **)); +#ifdef VMS +#define parse_qualified_param_ident_or_type pq_param_ident_or_type +#endif void parse_qualified_param_ident_or_type P_ ((char **)); int globals P_ ((int)); void yyerror P_ ((char *, char *)); @@ -3926,4 +3929,4 @@ main (argc, argv) return EXIT_SUCCESS; } -/* ebrowse.c ends here. */ +/* ebrowse.c ends here */