From: Colin Walters Date: Mon, 11 Mar 2002 21:12:49 +0000 (+0000) Subject: Remove documentation on setting up pcomplete. X-Git-Tag: ttn-vms-21-2-B4~16226 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=22c663ed24a4a95f6c5e4f83d10ff1f0863b56af;p=emacs.git Remove documentation on setting up pcomplete. --- diff --git a/lisp/comint.el b/lisp/comint.el index 3654149b651..c73ccfb3951 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -56,34 +56,6 @@ ;; For further information on the standard derived modes (shell, ;; inferior-lisp, inferior-scheme, ...), see the relevant source files. - -;; To give your mode support for the programmable, dynamic completion -;; facility in "pcomplete.el", you should define two functions in the -;; following form, replacing with the prefix of your mode: - -;; (defvar -pcomplete-setup-p nil) -;; (defun -pcomplete () -;; "Cycle forwards through completions at point, using `pcomplete'. -;; This function merely invokes `pcomplete', after ensuring this buffer -;; is set up for it." -;; (interactive) -;; (unless (prog1 -pcomplete-setup-p -;; (setq -pcomplete-setup-p t)) -;; (pcomplete-comint-setup '-dynamic-complete-functions)) -;; (setq this-command 'pcomplete) -;; (call-interactively #'pcomplete)) - -;; (defun -pcomplete-reverse () -;; "Cycle backwards through completions at point, using `pcomplete'. -;; This function merely invokes `pcomplete-reverse', after ensuring this -;; buffer is set up for it." -;; (interactive) -;; (unless (prog1 -pcomplete-setup-p -;; (setq -pcomplete-setup-p t)) -;; (pcomplete-comint-setup '-dynamic-complete-functions)) -;; (setq this-command 'pcomplete-reverse) -;; (call-interactively #'pcomplete-reverse)) - ;; For hints on converting existing process modes (e.g., tex-mode, ;; background, dbx, gdb, kermit, prolog, telnet) to use comint-mode ;; instead of shell-mode, see the notes at the end of this file.