GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Filter::m4(3) User Contributed Perl Documentation Filter::m4(3)

Filter::m4 - M4 source filter

    use Filter::m4;
    use Filter::m4 'prefix';

This source filter pipes the current source file through the M4 macro processor ("m4") if it is available.

As with all source filters its scope is limited to the current source file only. Every file you want to be processed by the filter must have the following line near the top.

    use Filter::m4;

Here is a small example that shows how to define and use an M4 macro:

    use Filter::m4;

    define(`foo', `$1 =~ s/bar/baz/r')

    $a = "foobar";
    print "a = " . foo(`$a') . "\n";

The output of the above example:

    a = foobaz

By default, M4 uses ` and ' as quotes; however, this is configurable using M4's "changequote" builtin.

M4 uses $1, $2, etc., to indicate arguments in macros. To avoid clashes with Perl regex syntax it is recommended to use Perl's alternative forms "${1}", "${1}", etc.

The following keywords in M4 and Perl are identical:

    eval
    format
    index
    mkstemp
    shift
    substr

If you need such keywords in your Perl code you have to use one of the following three solutions.

  • Protect the keyword with M4 quotes, for example `shift'.
  • Redefine the problematic M4 builtin using "defn", as outlined in section Renaming macros of the M4 info manual.
  • Use the "prefix" option. This adds the prefix "m4_" to all M4 builtins (but not to user-defined macros). For example, you will have to use "m4_shift" instead of "shift".

Werner Lemberg

17th March 2018.
2020-08-05 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.