aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorColin Walters <[email protected]>2002-03-11 21:12:49 +0000
committerColin Walters <[email protected]>2002-03-11 21:12:49 +0000
commit22c663ed24a4a95f6c5e4f83d10ff1f0863b56af (patch)
tree3276bd0fe0f1e381ac6bf61883a94a845e2b2014 /lisp/comint.el
parentff955d900086e87fc3d356c7e70848e480f592e8 (diff)
Remove documentation on setting up pcomplete.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el28
1 files changed, 0 insertions, 28 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 3654149b65..c73ccfb395 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 <MODE> with the prefix of your mode:
-
-;; (defvar <MODE>-pcomplete-setup-p nil)
-;; (defun <MODE>-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 <MODE>-pcomplete-setup-p
-;; (setq <MODE>-pcomplete-setup-p t))
-;; (pcomplete-comint-setup '<MODE>-dynamic-complete-functions))
-;; (setq this-command 'pcomplete)
-;; (call-interactively #'pcomplete))
-
-;; (defun <MODE>-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 <MODE>-pcomplete-setup-p
-;; (setq <MODE>-pcomplete-setup-p t))
-;; (pcomplete-comint-setup '<MODE>-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.