emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/comint.el


From: Colin Walters
Subject: [Emacs-diffs] Changes to emacs/lisp/comint.el
Date: Mon, 11 Mar 2002 16:12:49 -0500

Index: emacs/lisp/comint.el
diff -c emacs/lisp/comint.el:1.266 emacs/lisp/comint.el:1.267
*** emacs/lisp/comint.el:1.266  Wed Feb 27 14:31:00 2002
--- emacs/lisp/comint.el        Mon Mar 11 16:12:49 2002
***************
*** 56,89 ****
  ;; 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.
--- 56,61 ----



reply via email to

[Prev in Thread] Current Thread [Next in Thread]