Show
Ignore:
Timestamp:
09/30/06 09:12:06 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

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
  • trunk/lisp/icomplete.el

    r4058 r4169  
    158158                               ", ") 
    159159                    ">")))))) 
     160;;;_  = icomplete-with-completion-tables 
     161(defvar icomplete-with-completion-tables '(internal-complete-buffer) 
     162  "Specialized completion tables with which icomplete should operate. 
     163 
     164Icomplete does not operate with any specialized completion tables 
     165except those on this list.") 
    160166 
    161167;;;_ > icomplete-mode (&optional prefix) 
     
    185191       (not executing-kbd-macro) 
    186192       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)))) 
    189196 
    190197;;;_ > icomplete-minibuffer-setup ()