* doc/autoconf.texi: Restore font-lock in some examples using
$$, for vim.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2010-06-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+ Add comments for vim syntax highlighting.
+ * doc/autoconf.texi: Restore font-lock in some examples using
+ $$, for vim.
+
Formatting cleanups for optional arguments.
* doc/autoconf.texi (Configuration Actions, Help Formatting)
(External Software): Use @r{} for brackets denoting optional
srcdir=''; \
test -f ./$@@.in || srcdir=$(srcdir)/; \
$(edit) $$@{srcdir@}$@@.in >$@@.tmp
+@c $$ restore font-lock
chmod +x $@@.tmp
chmod a-w $@@.tmp
mv $@@.tmp $@@
@table @samp
@item $$
+@c $$ restore font-lock
The character @samp{$}.
@item $f
test -n "$tmp" && test -d "$tmp"
@} || @{
tmp=$TMPDIR/foo$$-$RANDOM
+@c $$ restore font-lock
(umask 077 && mkdir "$tmp")
@} || exit $?
@end example
$(INSTALL) -m 644 \
`test -f $$i || echo $(VPATH)/`$$i \
$(DESTDIR)$(includedir)/$$i; \
+@c $$ restore font-lock
done
@end example
$(INSTALL) -m 644 \
`test -f $$i || echo $(VPATH)/`$$i \
$(DESTDIR)$(includedir)/$$i; \
+@c $$ restore font-lock
done
@end example
uninstall:
for p in $(PROGRAMS); do \
rm -f $(DESTDIR)$(bindir)/`echo $$p | sed '$(transform)'`; \
+@c $$ restore font-lock
done
@end example