diff options
author | Erik Naggum <erik@naggum.no> | 1996-01-14 07:34:30 +0000 |
---|---|---|
committer | Erik Naggum <erik@naggum.no> | 1996-01-14 07:34:30 +0000 |
commit | b578f267af27af50e3c091f8c9c9eee939b69978 (patch) | |
tree | c41e03d173274cfc11edf51a3fc63cd51060e59d /lisp/icomplete.el | |
parent | 8f652877984d1fde4ec6b98e4315dfb36408b548 (diff) | |
download | emacs-b578f267af27af50e3c091f8c9c9eee939b69978.tar.gz |
Update FSF's address.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r-- | lisp/icomplete.el | 63 |
1 files changed, 32 insertions, 31 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el index a68807f02c1..f23a9d43fde 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -20,40 +20,41 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to -;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;; along with GNU Emacs; see the file COPYING. If not, write to the +;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, +;; Boston, MA 02111-1307, USA. ;;; Commentary: -;;; Loading this package implements a more fine-grained minibuffer -;;; completion feedback scheme. Prospective completions are concisely -;;; indicated within the minibuffer itself, with each successive -;;; keystroke. - -;;; See 'icomplete-completions' docstring for a description of the -;;; icomplete display format. - -;;; See the `icomplete-minibuffer-setup-hook' docstring for a means to -;;; customize icomplete setup for interoperation with other -;;; minibuffer-oriented packages. - -;;; To activate icomplete mode, simply load the package. You can -;;; subsequently deactivate it by invoking the function icomplete-mode -;;; with a negative prefix-arg (C-U -1 ESC-x icomplete-mode). Also, -;;; you can prevent activation of the mode during package load by -;;; first setting the variable `icomplete-mode' to nil. Icompletion -;;; can be enabled any time after the package is loaded by invoking -;;; icomplete-mode without a prefix arg. - -;;; Thanks to everyone for their suggestions for refinements of this -;;; package. I particularly have to credit Michael Cook, who -;;; implemented an incremental completion style in his 'iswitch' -;;; functions that served as a model for icomplete. Some other -;;; contributors: Noah Freidman (restructuring as minor mode), Colin -;;; Rafferty (lemacs reconciliation), Lars Lindberg, RMS, and -;;; others. - -;;; klm. +;; Loading this package implements a more fine-grained minibuffer +;; completion feedback scheme. Prospective completions are concisely +;; indicated within the minibuffer itself, with each successive +;; keystroke. + +;; See 'icomplete-completions' docstring for a description of the +;; icomplete display format. + +;; See the `icomplete-minibuffer-setup-hook' docstring for a means to +;; customize icomplete setup for interoperation with other +;; minibuffer-oriented packages. + +;; To activate icomplete mode, simply load the package. You can +;; subsequently deactivate it by invoking the function icomplete-mode +;; with a negative prefix-arg (C-U -1 ESC-x icomplete-mode). Also, +;; you can prevent activation of the mode during package load by +;; first setting the variable `icomplete-mode' to nil. Icompletion +;; can be enabled any time after the package is loaded by invoking +;; icomplete-mode without a prefix arg. + +;; Thanks to everyone for their suggestions for refinements of this +;; package. I particularly have to credit Michael Cook, who +;; implemented an incremental completion style in his 'iswitch' +;; functions that served as a model for icomplete. Some other +;; contributors: Noah Freidman (restructuring as minor mode), Colin +;; Rafferty (lemacs reconciliation), Lars Lindberg, RMS, and +;; others. + +;; klm. ;;; Code: |