/usr/share/doc/m4-doc/Changeword.html is in m4-doc 1.4.18-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!--
This manual (31 December 2016) is for GNU M4 (version
1.4.18), a package containing an implementation of the m4 macro
language.
Copyright (C) 1989-1994, 2004-2014, 2016 Free Software
Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License,
Version 1.3 or any later version published by the Free Software
Foundation; with no Invariant Sections, no Front-Cover Texts, and no
Back-Cover Texts. A copy of the license is included in the section
entitled "GNU Free Documentation License." -->
<!-- Created by GNU Texinfo 6.3, http://www.gnu.org/software/texinfo/ -->
<head>
<title>GNU M4 1.4.18 macro processor: Changeword</title>
<meta name="description" content="GNU M4 1.4.18 macro processor: Changeword">
<meta name="keywords" content="GNU M4 1.4.18 macro processor: Changeword">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Indices.html#Indices" rel="index" title="Indices">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Input-Control.html#Input-Control" rel="up" title="Input Control">
<link href="M4wrap.html#M4wrap" rel="next" title="M4wrap">
<link href="Changecom.html#Changecom" rel="prev" title="Changecom">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smalllisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en">
<a name="Changeword"></a>
<div class="header">
<p>
Next: <a href="M4wrap.html#M4wrap" accesskey="n" rel="next">M4wrap</a>, Previous: <a href="Changecom.html#Changecom" accesskey="p" rel="prev">Changecom</a>, Up: <a href="Input-Control.html#Input-Control" accesskey="u" rel="up">Input Control</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indices.html#Indices" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Changing-the-lexical-structure-of-words"></a>
<h3 class="section">8.4 Changing the lexical structure of words</h3>
<a name="index-lexical-structure-of-words"></a>
<a name="index-words_002c-lexical-structure-of"></a>
<a name="index-syntax_002c-changing"></a>
<a name="index-changing-syntax"></a>
<a name="index-regular-expressions"></a>
<blockquote>
<p>The macro <code>changeword</code> and all associated functionality is
experimental. It is only available if the <samp>--enable-changeword</samp>
option was given to <code>configure</code>, at GNU <code>m4</code>
installation
time. The functionality will go away in the future, to be replaced by
other new features that are more efficient at providing the same
capabilities. <em>Do not rely on it</em>. Please direct your comments
about it the same way you would do for bugs.
</p></blockquote>
<p>A file being processed by <code>m4</code> is split into quoted strings, words
(potential macro names) and simple tokens (any other single character).
Initially a word is defined by the following regular expression:
</p>
<div class="example">
<pre class="example">[_a-zA-Z][_a-zA-Z0-9]*
</pre></div>
<p>Using <code>changeword</code>, you can change this regular expression:
</p>
<dl>
<dt><a name="index-changeword"></a>Optional builtin: <strong>changeword</strong> <em>(<var>regex</var>)</em></dt>
<dd><p>Changes the regular expression for recognizing macro names to be
<var>regex</var>. If <var>regex</var> is empty, use
‘<samp>[_a-zA-Z][_a-zA-Z0-9]*</samp>’. <var>regex</var> must obey the constraint
that every prefix of the desired final pattern is also accepted by the
regular expression. If <var>regex</var> contains grouping parentheses, the
macro invoked is the portion that matched the first group, rather than
the entire matching string.
</p>
<p>The expansion of <code>changeword</code> is void.
The macro <code>changeword</code> is recognized only with parameters.
</p></dd></dl>
<p>Relaxing the lexical rules of <code>m4</code> might be useful (for example) if
you wanted to apply translations to a file of numbers:
</p>
<div class="example">
<pre class="example">ifdef(`changeword', `', `errprint(` skipping: no changeword support
')m4exit(`77')')dnl
changeword(`[_a-zA-Z0-9]+')
⇒
define(`1', `0')1
⇒0
</pre></div>
<p>Tightening the lexical rules is less useful, because it will generally
make some of the builtins unavailable. You could use it to prevent
accidental call of builtins, for example:
</p>
<div class="example">
<pre class="example">ifdef(`changeword', `', `errprint(` skipping: no changeword support
')m4exit(`77')')dnl
define(`_indir', defn(`indir'))
⇒
changeword(`_[_a-zA-Z0-9]*')
⇒
esyscmd(`foo')
⇒esyscmd(foo)
_indir(`esyscmd', `echo hi')
⇒hi
⇒
</pre></div>
<p>Because <code>m4</code> constructs its words a character at a time, there
is a restriction on the regular expressions that may be passed to
<code>changeword</code>. This is that if your regular expression accepts
‘<samp>foo</samp>’, it must also accept ‘<samp>f</samp>’ and ‘<samp>fo</samp>’.
</p>
<div class="example">
<pre class="example">ifdef(`changeword', `', `errprint(` skipping: no changeword support
')m4exit(`77')')dnl
define(`foo
', `bar
')
⇒
dnl This example wants to recognize changeword, dnl, and `foo\n'.
dnl First, we check that our regexp will match.
regexp(`changeword', `[cd][a-z]*\|foo[
]')
⇒0
regexp(`foo
', `[cd][a-z]*\|foo[
]')
⇒0
regexp(`f', `[cd][a-z]*\|foo[
]')
⇒-1
foo
⇒foo
changeword(`[cd][a-z]*\|foo[
]')
⇒
dnl Even though `foo\n' matches, we forgot to allow `f'.
foo
⇒foo
changeword(`[cd][a-z]*\|fo*[
]?')
⇒
dnl Now we can call `foo\n'.
foo
⇒bar
</pre></div>
<p><code>changeword</code> has another function. If the regular expression
supplied contains any grouped subexpressions, then text outside
the first of these is discarded before symbol lookup. So:
</p>
<div class="example">
<pre class="example">ifdef(`changeword', `', `errprint(` skipping: no changeword support
')m4exit(`77')')dnl
ifdef(`__unix__', ,
`errprint(` skipping: syscmd does not have unix semantics
')m4exit(`77')')dnl
changecom(`/*', `*/')dnl
define(`foo', `bar')dnl
changeword(`#\([_a-zA-Z0-9]*\)')
⇒
#esyscmd(`echo foo \#foo')
⇒foo bar
⇒
</pre></div>
<p><code>m4</code> now requires a ‘<samp>#</samp>’ mark at the beginning of every
macro invocation, so one can use <code>m4</code> to preprocess plain
text without losing various words like ‘<samp>divert</samp>’.
</p>
<p>In <code>m4</code>, macro substitution is based on text, while in TeX, it
is based on tokens. <code>changeword</code> can throw this difference into
relief. For example, here is the same idea represented in TeX and
<code>m4</code>. First, the TeX version:
</p>
<div class="example">
<pre class="example">\def\a{\message{Hello}}
\catcode`\@=0
\catcode`\\=12
@a
@bye
⇒Hello
</pre></div>
<p>Then, the <code>m4</code> version:
</p>
<div class="example">
<pre class="example">ifdef(`changeword', `', `errprint(` skipping: no changeword support
')m4exit(`77')')dnl
define(`a', `errprint(`Hello')')dnl
changeword(`@\([_a-zA-Z0-9]*\)')
⇒
@a
⇒errprint(Hello)
</pre></div>
<p>In the TeX example, the first line defines a macro <code>a</code> to
print the message ‘<samp>Hello</samp>’. The second line defines <tt class="key">@</tt> to
be usable instead of <tt class="key">\</tt> as an escape character. The third line
defines <tt class="key">\</tt> to be a normal printing character, not an escape.
The fourth line invokes the macro <code>a</code>. So, when TeX is run
on this file, it displays the message ‘<samp>Hello</samp>’.
</p>
<p>When the <code>m4</code> example is passed through <code>m4</code>, it outputs
‘<samp>errprint(Hello)</samp>’. The reason for this is that TeX does
lexical analysis of macro definition when the macro is <em>defined</em>.
<code>m4</code> just stores the text, postponing the lexical analysis until
the macro is <em>used</em>.
</p>
<p>You should note that using <code>changeword</code> will slow <code>m4</code> down
by a factor of about seven, once it is changed to something other
than the default regular expression. You can invoke <code>changeword</code>
with the empty string to restore the default word definition, and regain
the parsing speed.
</p>
<hr>
<div class="header">
<p>
Next: <a href="M4wrap.html#M4wrap" accesskey="n" rel="next">M4wrap</a>, Previous: <a href="Changecom.html#Changecom" accesskey="p" rel="prev">Changecom</a>, Up: <a href="Input-Control.html#Input-Control" accesskey="u" rel="up">Input Control</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indices.html#Indices" title="Index" rel="index">Index</a>]</p>
</div>
</body>
</html>
|