diff options
author | Karl Heuer <kwzh@gnu.org> | 1999-03-21 07:26:47 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1999-03-21 07:26:47 +0000 |
commit | a399edf459254db53675f999d001c51b2b254f1d (patch) | |
tree | 89a6b1e2986e6e0325b48ddf031739f61a520e4c /lisp/complete.el | |
parent | 6f5510294b0838b74ae6be126808b2b8618dc0c2 (diff) | |
download | emacs-a399edf459254db53675f999d001c51b2b254f1d.tar.gz |
(partial-completion-mode): Doc fix.
Diffstat (limited to 'lisp/complete.el')
-rw-r--r-- | lisp/complete.el | 7 |
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 nil) is enhanced so that if some string is divided into words and each word is delimited by a character in `PC-word-delimiters', partial words are completed as much as possible and `*' characters are treated likewise in file names. -You must modify via \\[customize] for this variable to have an effect." +You must modify via \\[customize] for this variable to have an effect; +but also see the function `partial-completion-mode'." :set (lambda (symbol value) (partial-completion-mode (or value 0))) :initialize 'custom-initialize-default @@ -179,14 +180,14 @@ nil) is enhanced so that if some string is divided into words and each word is delimited by a character in `PC-word-delimiters', partial words are completed as much as possible. -For example, M-x p-c-b expands to M-x partial-completion-mode since no other +For example, M-x p-c-m expands to M-x partial-completion-mode since no other command begins with that sequence of characters, and \\[find-file] f_b.c TAB might complete to foo_bar.c if that file existed and no other file in that directory begin with that sequence of characters. Unless `PC-disable-wildcards' is non-nil, the \"*\" wildcard is interpreted specially when entering file or directory names. For example, -\\[find-file] *.c RET finds each C file in the currenty directory, and +\\[find-file] *.c RET finds each C file in the current directory, and \\[find-file] */foo_bar.c TAB completes the directory name as far as possible. Unless `PC-disable-includes' is non-nil, the \"<...>\" sequence is interpreted |