diff options
author | Slaven Rezic <slaven@rezic.de> | 2002-10-30 12:18:47 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-11-04 21:43:53 +0000 |
commit | 574c798aa09309489c549b50dff81b705c3afde8 (patch) | |
tree | 3cfb04bb9b6ffdf738489fda25bab10a92d066b1 /embed.h | |
parent | 48fe685d5098bdc7e2779da74c52af7e601b5c7e (diff) | |
download | perl-574c798aa09309489c549b50dff81b705c3afde8.tar.gz |
Re: [perl #18066] Bug in -I when path has double colons?
Message-ID: <87of9c2prs.fsf@vran.herceg.de>
With the corresponding change to embed.fnc
p4raw-id: //depot/perl@18102
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -6,9 +6,12 @@ * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. * - * !!!!!!! DO NOT EDIT THIS FILE !!!!!!! - * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h, - * perlvars.h and thrdvar.h. Any changes made here will be lost! + * !!!!!!! DO NOT EDIT THIS FILE !!!!!!! + * This file is built by embed.pl from data in embed.fnc, embed.pl, + * pp.sym, intrpvar.h, perlvars.h and thrdvar.h. + * Any changes made here will be lost! + * + * Edit those files and run 'make regen_headers' to effect changes. */ /* (Doing namespace management portably in C is really gross.) */ @@ -2455,7 +2458,7 @@ #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT) #define find_beginning() S_find_beginning(aTHX) #define forbid_setid(a) S_forbid_setid(aTHX_ a) -#define incpush(a,b,c) S_incpush(aTHX_ a,b,c) +#define incpush(a,b,c,d) S_incpush(aTHX_ a,b,c,d) #define init_interp() S_init_interp(aTHX) #define init_ids() S_init_ids(aTHX) #define init_lexer() S_init_lexer(aTHX) |