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
|
*** Doc/zsh.texi.orig Fri Sep 3 16:44:37 1999
--- Doc/zsh.texi Sun Feb 13 12:02:35 2000
***************
*** 2,7 ****
--- 2,11 ----
@c %**start of header
@setfilename zsh.info
@settitle zsh
+ @dircategory Shells
+ @direntry
+ * Zsh: (zsh). The Z shell.
+ @end direntry
@c %**end of header
@ifinfo
***************
*** 834,840 ****
A character may be @dfn{quoted} (that is, made to stand for itself) by
preceding it with a @code{\}. @code{\} followed by a newline is
ignored. All characters enclosed between a pair of single quotes
! (@t{@value{dsq}}) are quoted, except the first character of @code{histchars}
(@code{!} by default). A single quote cannot appear within single
quotes. Inside double quotes (@code{""}), parameter and command
substitution occurs, and @code{\} quotes the characters @code{\},
--- 838,844 ----
A character may be @dfn{quoted} (that is, made to stand for itself) by
preceding it with a @code{\}. @code{\} followed by a newline is
ignored. All characters enclosed between a pair of single quotes
! (@t{'}@t{'}) are quoted, except the first character of @code{histchars}
(@code{!} by default). A single quote cannot appear within single
quotes. Inside double quotes (@code{""}), parameter and command
substitution occurs, and @code{\} quotes the characters @code{\},
***************
*** 1622,1628 ****
@code{histchars} parameter which is @code{!} by default and may occur
anywhere on the command line; history substitutions do not nest. The
@code{!} can be escaped with @code{\} or can be enclosed between a pair of
! single quotes (@t{@value{dsq}})
to suppress its special meaning. Double quotes will not work for this.
@noindent
--- 1626,1632 ----
@code{histchars} parameter which is @code{!} by default and may occur
anywhere on the command line; history substitutions do not nest. The
@code{!} can be escaped with @code{\} or can be enclosed between a pair of
! single quotes (@t{'}@t{'})
to suppress its special meaning. Double quotes will not work for this.
@noindent
***************
*** 5183,5189 ****
@cindex rc, quoting style
@cindex quoting style, rc
@pindex RC_QUOTES
! Allow the character sequence @t{@value{dsq}} to signify a single quote within
singly quoted strings.
@item RCS (+f)
--- 5187,5193 ----
@cindex rc, quoting style
@cindex quoting style, rc
@pindex RC_QUOTES
! Allow the character sequence @t{'}@t{'} to signify a single quote within
singly quoted strings.
@item RCS (+f)
***************
*** 7008,7014 ****
use is
@example
! compctl -D -f + -H 0 @value{dsq} -X '(No file found; using history)'
@end example
which forces completion to look back in the history list for a word if no
--- 7012,7018 ----
use is
@example
! compctl -D -f + -H 0 @t{'}@t{'} -X '(No file found; using history)'
@end example
which forces completion to look back in the history list for a word if no
***************
*** 7071,7077 ****
name completion performed on the first word in the range. For example,
@example
! compctl -x 'r[-exec,;]' -l @value{dsq} -- find
@end example
completes arguments between @code{-exec} and the following @code{;} (or the
--- 7075,7081 ----
name completion performed on the first word in the range. For example,
@example
! compctl -x 'r[-exec,;]' -l @t{'}@t{'} -- find
@end example
completes arguments between @code{-exec} and the following @code{;} (or the
|