aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2016-01-28 19:09:30 -0800
committerGravatar Kurtis Rader <krader@skepticism.us>2016-01-28 19:34:51 -0800
commitb88e31b3f1b0eeb2506ce7c3e66783c832db1093 (patch)
tree261bdbbb41317030c8f2a69225d33fd54ec017b3 /doc_src
parent7c4f553acc69d2bd33979d566606b4a6ef750779 (diff)
fix several build warnings
This fixes all but one of the warnings documented in issue #2685. The sole remaining warning is from the string split '' abc example in doc_src/string.txt. That example results in the man page displaying string split {} abc I leave it to someone else to fix that problem (I'll open an issue specifically for it since it took some effort to track down the source of the warning). Resolves issue #2685.
Diffstat (limited to 'doc_src')
-rw-r--r--doc_src/printf.txt2
-rw-r--r--doc_src/string.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc_src/printf.txt b/doc_src/printf.txt
index 81082a26..ce7796c8 100644
--- a/doc_src/printf.txt
+++ b/doc_src/printf.txt
@@ -60,7 +60,7 @@ This file has been imported from the printf in GNU Coreutils version 6.9. If you
\subsection printf-example Example
\fish
-printf '%s\t%s\n' flounder fish
+printf '\%s\\t\%s\n' flounder fish
\endfish
Will print "flounder fish" (separated with a tab character), followed by a newline character. This is useful for writing completions, as fish expects completion scripts to output the option followed by the description, separated with a tab character.
diff --git a/doc_src/string.txt b/doc_src/string.txt
index c7781473..37d24435 100644
--- a/doc_src/string.txt
+++ b/doc_src/string.txt
@@ -110,7 +110,7 @@ string trim --right --chars=yz xyzzy zany
\endfish
\fish
-echo \\x07 | string escape
+echo \x07 | string escape
# Output:
# \\cg
\endfish
@@ -193,7 +193,7 @@ string replace -r '(\\w+)\\s+(\\w+)' '$2 $1 $$' 'left right'
# Output:
# right left $
-string replace -r '\s*newline\s*' '\n' 'put a newline here'
+string replace -r '\\s*newline\\s*' '\n' 'put a newline here'
# Output:
# put a
# here