aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-03-21 07:26:47 +0000
committerKarl Heuer1999-03-21 07:26:47 +0000
commita399edf459254db53675f999d001c51b2b254f1d (patch)
tree89a6b1e2986e6e0325b48ddf031739f61a520e4c
parent6f5510294b0838b74ae6be126808b2b8618dc0c2 (diff)
downloademacs-a399edf459254db53675f999d001c51b2b254f1d.tar.gz
emacs-a399edf459254db53675f999d001c51b2b254f1d.zip
(partial-completion-mode): Doc fix.
-rw-r--r--lisp/complete.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/complete.el b/lisp/complete.el
index e51a9f33402..4bb62f86458 100644
--- a/lisp/complete.el
+++ b/lisp/complete.el
@@ -110,7 +110,8 @@ When Partial Completion mode is enabled, TAB (or M-TAB if `PC-meta-flag' is
110nil) is enhanced so that if some string is divided into words and each word is 110nil) is enhanced so that if some string is divided into words and each word is
111delimited by a character in `PC-word-delimiters', partial words are completed 111delimited by a character in `PC-word-delimiters', partial words are completed
112as much as possible and `*' characters are treated likewise in file names. 112as much as possible and `*' characters are treated likewise in file names.
113You must modify via \\[customize] for this variable to have an effect." 113You must modify via \\[customize] for this variable to have an effect;
114but also see the function `partial-completion-mode'."
114 :set (lambda (symbol value) 115 :set (lambda (symbol value)
115 (partial-completion-mode (or value 0))) 116 (partial-completion-mode (or value 0)))
116 :initialize 'custom-initialize-default 117 :initialize 'custom-initialize-default
@@ -179,14 +180,14 @@ nil) is enhanced so that if some string is divided into words and each word is
179delimited by a character in `PC-word-delimiters', partial words are completed 180delimited by a character in `PC-word-delimiters', partial words are completed
180as much as possible. 181as much as possible.
181 182
182For example, M-x p-c-b expands to M-x partial-completion-mode since no other 183For example, M-x p-c-m expands to M-x partial-completion-mode since no other
183command begins with that sequence of characters, and 184command begins with that sequence of characters, and
184\\[find-file] f_b.c TAB might complete to foo_bar.c if that file existed and no 185\\[find-file] f_b.c TAB might complete to foo_bar.c if that file existed and no
185other file in that directory begin with that sequence of characters. 186other file in that directory begin with that sequence of characters.
186 187
187Unless `PC-disable-wildcards' is non-nil, the \"*\" wildcard is interpreted 188Unless `PC-disable-wildcards' is non-nil, the \"*\" wildcard is interpreted
188specially when entering file or directory names. For example, 189specially when entering file or directory names. For example,
189\\[find-file] *.c RET finds each C file in the currenty directory, and 190\\[find-file] *.c RET finds each C file in the current directory, and
190\\[find-file] */foo_bar.c TAB completes the directory name as far as possible. 191\\[find-file] */foo_bar.c TAB completes the directory name as far as possible.
191 192
192Unless `PC-disable-includes' is non-nil, the \"<...>\" sequence is interpreted 193Unless `PC-disable-includes' is non-nil, the \"<...>\" sequence is interpreted