Changeset 4169 for trunk/lisp/icomplete.el
- Timestamp:
- 09/30/06 09:12:06 (2 years ago)
- Files:
-
- trunk/lisp (modified) (1 prop)
- trunk/lisp/icomplete.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp
- Property svn:ignore changed from
*.elc
MANIFEST
Makefile
Makefile.unix
makefile
elc.tar.gz
cus-load.el
finder-inf.el
subdirs.el
loaddefs.el
to
*.elc
MANIFEST
Makefile
Makefile.unix
makefile
elc.tar.gz
cus-load.el
finder-inf.el
subdirs.el
loaddefs.el
pre-mh-loaddefs.el-CMD
- Property svn:ignore changed from
trunk/lisp/icomplete.el
r4058 r4169 158 158 ", ") 159 159 ">")))))) 160 ;;;_ = icomplete-with-completion-tables 161 (defvar icomplete-with-completion-tables '(internal-complete-buffer) 162 "Specialized completion tables with which icomplete should operate. 163 164 Icomplete does not operate with any specialized completion tables 165 except those on this list.") 160 166 161 167 ;;;_ > icomplete-mode (&optional prefix) … … 185 191 (not executing-kbd-macro) 186 192 minibuffer-completion-table 187 ;; (or minibuffer-completing-file-name 188 (not (functionp minibuffer-completion-table)))) ;; ) 193 (or (not (functionp minibuffer-completion-table)) 194 (member minibuffer-completion-table 195 icomplete-with-completion-tables)))) 189 196 190 197 ;;;_ > icomplete-minibuffer-setup ()
