diff options
author | Dan McGee <dan@archlinux.org> | 2007-12-29 07:24:15 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-12-29 07:24:15 +0100 |
commit | b3c6bdda38f7e370e1f80f02a61f1d3f08c1b57d (patch) | |
tree | e030a3034424cbdae122029738c9b0d9a53e375f /doc/pacman.conf.5.txt | |
parent | 26c05b1c8c6fe639cd4eea5decac694c86cc7c00 (diff) | |
download | pacman-b3c6bdda38f7e370e1f80f02a61f1d3f08c1b57d.tar.gz pacman-b3c6bdda38f7e370e1f80f02a61f1d3f08c1b57d.tar.xz |
doc: rename manlink macro to linkman
Between AsciiDoc 8.2.2 and 8.2.3, the following change was made to the stock
Asciidoc configuration:
@@ -149,7 +153,10 @@
# Inline macros.
# Backslash prefix required for escape processing.
# (?s) re flag for line spanning.
-(?su)[\\]?(?P<name>\w(\w|-)*?):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])=
+
+# Explicit so they can be nested.
+(?su)[\\]?(?P<name>(http|https|ftp|file|mailto|callto|image|link)):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])=
+
# Anchor: [[[id]]]. Bibliographic anchor.
(?su)[\\]?\[\[\[(?P<attrlist>[\w][\w-]*?)\]\]\]=anchor3
# Anchor: [[id,xreflabel]]
This default regex now matches explicit values, and unfortunately in this
case manlink was being matched by just 'link', causing the wrong inline
macro template to be applied. By renaming the macro, we can avoid being
matched by the wrong regex.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'doc/pacman.conf.5.txt')
-rw-r--r-- | doc/pacman.conf.5.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/pacman.conf.5.txt b/doc/pacman.conf.5.txt index 2a0f88ac..958f6f71 100644 --- a/doc/pacman.conf.5.txt +++ b/doc/pacman.conf.5.txt @@ -16,7 +16,7 @@ Synopsis Description ----------- -Pacman, using manlink:libalpm[3], will attempt to read pacman.conf each time it +Pacman, using linkman:libalpm[3], will attempt to read pacman.conf each time it is invoked. This configuration file is divided into sections or repositories. Each section defines a package repository that pacman can use when searching for packages in '\--sync' mode. The exception to this is the options section, @@ -150,11 +150,11 @@ package repository. If you add new packages to the repository, remember to re-generate the database and use pacman's '\--refresh' option. For more information on the repo-add command, see ``repo-add \--help'' or -manlink:repo-add[8]. +linkman:repo-add[8]. See Also -------- -manlink:pacman[8], manlink:libalpm[3] +linkman:pacman[8], linkman:libalpm[3] include::footer.txt[] |