diff options
author | Dan McGee <dan@archlinux.org> | 2007-12-29 00:24:15 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-12-29 00:24:15 -0600 |
commit | b3c6bdda38f7e370e1f80f02a61f1d3f08c1b57d (patch) | |
tree | e030a3034424cbdae122029738c9b0d9a53e375f /doc/pacman.8.txt | |
parent | 26c05b1c8c6fe639cd4eea5decac694c86cc7c00 (diff) | |
download | 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.8.txt')
-rw-r--r-- | doc/pacman.8.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/pacman.8.txt b/doc/pacman.8.txt index 85561b60..9dbf76d2 100644 --- a/doc/pacman.8.txt +++ b/doc/pacman.8.txt @@ -21,7 +21,7 @@ system. It features dependency support, package groups, install and uninstall hooks, and the ability to sync your local machine with a remote ftp server to automatically upgrade packages. Pacman packages are a zipped tar format. -Since version 3.0.0, pacman has been the frontend to manlink:libalpm[3], the +Since version 3.0.0, pacman has been the frontend to linkman:libalpm[3], the "Arch Linux Package Management" library. This library allows alternative front ends to be written (for instance, a GUI front end). @@ -216,7 +216,7 @@ Sync Options[[SO]] free up disk space. When pacman downloads packages, it saves them in a cache directory. In addition, databases are saved for every sync DB you download from, and are not deleted even if they are removed from the - configuration file manlink:pacman.conf[5]. Use one '\--clean' switch to + configuration file linkman:pacman.conf[5]. Use one '\--clean' switch to only remove old packages; use two to remove all packages from the cache. In both cases, you will have a yes or no option to remove packages and/or unused downloaded databases. @@ -261,7 +261,7 @@ Sync Options[[SO]] *-y, \--refresh*:: Download a fresh copy of the master package list from the server(s) - defined in manlink:pacman.conf[5]. This should typically be used each time + defined in linkman:pacman.conf[5]. This should typically be used each time you use '\--sysupgrade' or '-u'. Passing two '\--refresh' or '-y' flags will force a refresh of all package lists even if they are thought to be up to date. @@ -313,12 +313,12 @@ original=X, current=Y, new=Z:: Configuration ------------- -See manlink:pacman.conf[5] for more details on configuring pacman using the +See linkman:pacman.conf[5] for more details on configuring pacman using the 'pacman.conf' file. See Also -------- -manlink:pacman.conf[5], manlink:makepkg[8], manlink:libalpm[3] +linkman:pacman.conf[5], linkman:makepkg[8], linkman:libalpm[3] include::footer.txt[] |