Skip to content

Commit f8a5e26

Browse files
committed
embed.fnc: Convert some tabs to blanks
1 parent 9b82965 commit f8a5e26

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

embed.fnc

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -314,9 +314,9 @@
314314
: circumstances dictate otherwise, they can be anywhere, provided the
315315
: whole function is wrapped with
316316
:
317-
: #ifndef NO_MATHOMS
318-
: ...
319-
: #endif
317+
: #ifndef NO_MATHOMS
318+
: ...
319+
: #endif
320320
:
321321
: Note that this flag no longer automatically adds a 'Perl_' prefix to
322322
: the name. Additionally specify 'p' to do that.
@@ -370,10 +370,10 @@
370370
: then it is assumed to take a strftime-style format string as the 1st
371371
: arg; otherwise it's assumed to take a printf style format string, not
372372
: necessarily the 1st arg. All the arguments following the second form
373-
: (including possibly '...') are assumed to be for the format.
373+
: (including possibly '...') are assumed to be for the format.
374374
:
375375
: embed.h: any entry in here for the second form is suppressed because
376-
: of varargs
376+
: of varargs
377377
: proto.h: add __attribute__format__ (or ...null_ok__)
378378
:
379379
: 'F' Function has a '...' parameter, but don't assume it is a format. This
@@ -396,7 +396,7 @@
396396
: one NN argument.
397397
:
398398
: proto.h: PERL_ARGS_ASSERT macro is not defined unless the function
399-
: has NN arguments
399+
: has NN arguments
400400
:
401401
: 'h' Hide any documentation that would normally go into perlapi or
402402
: perlintern. This is typically used when the documentation is actually
@@ -427,7 +427,7 @@
427427
: particular C file(s) or in the perl core.) Therefore, all non-guarded
428428
: functions should also have the 'p' flag specified to avoid polluting
429429
: the XS code name space. Otherwise, this flag also turns on the 'S'
430-
: flag.
430+
: flag.
431431
:
432432
: proto.h: function is declared as PERL_STATIC_INLINE
433433
:
@@ -444,7 +444,8 @@
444444
: parameter unless the 'T' flag is specified.
445445
:
446446
: suppress proto.h entry (actually, not suppressed, but commented out)
447-
: suppress entry in the list of exported symbols available on all platforms
447+
: suppress entry in the list of exported symbols available on all
448+
: platforms
448449
: suppress embed.h entry, as the implementation should furnish the macro
449450
:
450451
: 'M' The implementation is furnishing its own macro instead of relying on
@@ -489,10 +490,10 @@
489490
:
490491
: 'o' Has no Perl_foo or S_foo compatibility macro:
491492
:
492-
: This is used for whatever reason to force the function to be called
493-
: with the long name. Perhaps there is a varargs issue. Use the 'M'
494-
: flag instead for wrapper macros, and legacy-only functions should
495-
: also use 'b'.
493+
: This is used for whatever reason to force the function to be called
494+
: with the long name. Perhaps there is a varargs issue. Use the 'M'
495+
: flag instead for wrapper macros, and legacy-only functions should
496+
: also use 'b'.
496497
:
497498
: embed.h: suppress "#define foo Perl_foo"
498499
:
@@ -543,8 +544,8 @@
543544
:
544545
: 's' Static function, but function in source code has a Perl_ prefix:
545546
:
546-
: This is used for functions that have always had a Perl_ prefix, but
547-
: have been moved to a header file and declared static.
547+
: This is used for functions that have always had a Perl_ prefix, but
548+
: have been moved to a header file and declared static.
548549
:
549550
: proto.h: function is declared as Perl_foo rather than foo
550551
: STATIC is added to declaration;
@@ -579,11 +580,11 @@
579580
: compatibility issues.
580581
:
581582
: 'W' Add a comma_pDEPTH argument to function prototypes, and a comma_aDEPTH
582-
: argument to the function calls. This means that under DEBUGGING a
583-
: depth argument is added to the functions, which is used for example by
584-
: the regex engine for debugging and trace output. A non DEBUGGING build
585-
: will not pass the unused argument. Currently restricted to functions
586-
: with at least one argument.
583+
: argument to the function calls. This means that under DEBUGGING a
584+
: depth argument is added to the functions, which is used for example by
585+
: the regex engine for debugging and trace output. A non DEBUGGING build
586+
: will not pass the unused argument. Currently restricted to functions
587+
: with at least one argument.
587588
:
588589
: 'X' Explicitly exported:
589590
:

0 commit comments

Comments
 (0)